My requirement is to print 10 cm on the whole page when printing .
I type using window.print(). My webpage will dynamically increase (so the number of pages cannot be determined). For all pages I need to provide a size of 10 cm.
I used CSS Media="Print"in which I defined the style:
@page
{
Margin-top :10cm;
}
This works in all browsers except Mozilla firefox . I was looking for solutions, and all blogs say that Mozilla does not support @page, but without a solution. Can someone help me with this? Please let me know if it is possible to implement in mozilla
source
share