【发布时间】:2017-08-08 07:10:54
【问题描述】:
我有一张要打印的表格。所以基本结构是包含一个嵌套的table,两者都包含thead。打印后,pdf 会显示重叠的 thead。
请找到附加的链接以重现代码。 https://www.dropbox.com/s/a0l0s7blh401tg7/table.html
<table>
<thead>
<tr>
<td>heading</td>
</tr>
<tbody>
<tr>
<td>
<table>
<thead>
<tr>
<th>Heading 2</th>
</tr>
</table>
</td>
</tr>
</tbody>
</thead>
</table>
【问题讨论】:
标签: css html pdf html-table