在我的网站上,我有一个非常高的表格,可以在打印时覆盖多个页面。有没有一种方法可以让标题行在打印时显示在每个页面的顶部?
答案 0 :(得分:3)
大多数浏览器会自动执行此操作。
<table>
<thead>
<tr><th>Your header row repeats on every page.</th></tr>
</thead>
<tbody>
<tr><td>Your body rows will fill the pages.</td></tr>
</tbody>
</table>
答案 1 :(得分:0)
是的,为此您可以使用媒体打印,只需在每个页面中包含它:)
答案 2 :(得分:0)
给你的头行
position :fixed
现在它将在每一页上重复。
来源 - https://makandracards.com/makandra/4845-repeat-an-element-on-every-printed-page-with-css