<div id="header">header</div>
<div id="content">
content spanning several pages...
</div>
<div id="footer">Footer - Fixed at the bottom of each page</div>
I want to print #header and #footer on every page in print mode. I searched a lot but nothing seems to work, even position:fixed doesn’t work as expected.
If you’re willing to switch over to tables for your layout (not necessarily ideal), you can do it with the
<thead>and<tfoot>elements. They’ll print at the top and bottom of every page:Another option is to use display
table-header-groupandtable-footer-groupbut cross-browser support isn’t great: