【发布时间】:2019-05-20 19:00:45
【问题描述】:
我有一张这样的桌子:
<table>
<thead>
<th>Name</th>
<th>Age</th>
<th>Class</th>
<th>Roll No</th>
<th>Mobile</th>
<th>Address</th>
</thead>
<tbody>
<tr>
<td>Ankush</td>
<td>15</td>
<td>10th</td>
<td>105</td>
<td style="width:10%">1234567890</td>
<td style="width:20%">xyzdegdgrebrhbrgh</td>
</tr>
</tbody>
</table>
表格在打印时丢失了自定义列宽。它在正常页面上工作正常,但列宽样式在打印时丢失。
【问题讨论】:
-
您是否尝试将表格样式放入@media print css 中?
-
尝试在您的打印 css 中添加固定的表格布局和断字
标签: html css printing html-table