I need to print a webpage with a custom title on each page. Below is my CSS for print media
@media screen { header.onlyprint, footer.onlyprint,.watermark{ display: none; } } @page { size:A4; } @media print { @page { size:auto; margin-top:2mm; } html{ margin-top: 20mm; } header.onlyprint { position: fixed; top: 0; margin-top: 0; } }
And the HTML code:
<header class="onlyprint"> <img src="images/logo.png"/> </header>
But the problem is that only on the first page the logo is correctly printed, and from the second page the logo is superimposed on the body. CSS HTML does not work from the second page.
source share