I use @media to print a title on every page when printing a screen on a page in Firefox. I have css configured as follows:
@media print { div.printDivHeader { font-family: Arial, Helvetica, sans-serif; font-size: 1.0em; position: fixed; display: block; width: 100%; height: auto; top: 0; } }
The problem is that the contents of the second page overlap with the header of the print header. (that is, on the second page, the title does not cause the content of the page to drop, and therefore I get the text written above the text). Is there any way to handle this?
Mtr
source share