I\'ve created a html page with a header,some content and a footer. I tried to get a print of the HTML page, and there was 2 pages. I got the header in first page and the foo
Use fixed positioned elements that you activate with print media type:
#header, #footer { display: none; } @media print { #header, #footer { position: fixed; display: block; top: 0; } #footer { bottom: 0; } }
(Here assuming you have div elements with id header and footer).
header
footer