方法一:position fixed
// HTML
<div class="header">...</div>
<div class="content">...</div>
<div class="footer">...</div>
// CSS
.header {
position: fixed;
top: 0;
}
.footer {
position: fixed;
bottom: 0;
}
这个方法超过一页后,页眉页脚会与内容重叠
方法二:table
// HTML
<table>
<thead>
<tr><td>
<div class="header">...</div>
</td></tr>
</thead>
<tbody>
<tr><td>
<div class="content">...</div>
</td></tr>
</tbody>
<tfoot>
<tr><td>
<div class="footer">...</div>
</td></tr>
</tfoot>
</table>
利用表格table,打印会自动把thead,tfoot设置为页眉页脚,不过这个方法页脚会跟在内容后面,不会在页面底部
总结:两种方法结合,可以很好的实现
// HTML
<table>
<thead><tr><td>
<div class="header-space"> </div>
</td></tr></thead>
<tbody><tr><td>
<div class="content">...</div>
</td></tr></tbody>
<tfoot><tr><td>
<div class="footer-space"> </div>
</td></tr></tfoot>
</table>
<div class="header">...</div>
<div class="footer">...</div>
// CSS
.header, .header-space,
.footer, .footer-space {
height: 100px;
}
.header {
position: fixed;
top: 0;
}
.footer {
position: fixed;
bottom: 0;
}
英文原文
The Ultimate Print HTML Template with Header & Footer
Idan CohenFollowNov 1, 2018 · 3 min read
create printable HTML pages using a reusable template with a header and a footer that repeat on every page. Check out the demo.
While developing a CRM project, I came across the need to print out various documents for mailing, book keeping and archiving. To achieve this I had to be able to produce HTML pages with the following requirements:
- Every page must have a branded header and footer.
- Content may span over multiple pages.
I was surprised to learn this is not as easy as you would expect. I came across two major strategies for achieving this:
METHOD I — Fixed Position
Elements with css property position
set to fixed
will “stick” to the edges of the page by setting top
or bottom
to 0
. They will also repeat on each printed page. Here is a simplified example:
// HTML
This method works great when you are only printing a single page:
But if your content is longer than a single page, the header and footer will overlap the content on consecutive pages:
METHOD II — Table
By defaultthead
and tfoot
repeat on each printed page.
// HTML
...
|
...
|
Sounds great, but the disadvantage in this method is that the footer part will “stick” to the bottom of every page except the last page, where it will “stick” to the bottom of the content:
ULTIMATE METHOD
So by merging the two methods I can create a template that will meet my requirements.
The general strategy is to use the
method to create empty “place-holders” that will prevent the content from overlapping the header/footer. We’re keeping it empty so that on the last page nothing will be shown. Then, we can use the
method to place the actual header/footer inside the empty place-holders:
// HTML
|
...
|
So you get this -
Problem solved! Checkout full demo -
TIP: Save the 🌲s
If your app is printing many documents, you can spend less paper simply lowering the page’s margin and get more printing area -
// css@page {
margin: 2mm
}