如何在打印时始终在每页顶部设置标题?

时间:2018-04-16 16:30:57

标签: javascript html css printing

在我的网站上,我有一个非常高的表格,可以在打印时覆盖多个页面。有没有一种方法可以让标题行在打印时显示在每个页面的顶部?

3 个答案:

答案 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)

是的,为此您可以使用媒体打印,只需在每个页面中包含它:)

http://edutechwiki.unige.ch/en/CSS_for_print_tutorial

答案 2 :(得分:0)

给你的头行

position :fixed

现在它将在每一页上重复。

来源 - https://makandracards.com/makandra/4845-repeat-an-element-on-every-printed-page-with-css