My requriment is to provide 10cm margin to all the page when printing.
I'm printing using window.print()
. My web page will dynamically increase (so number of pages cannot be determined). For all the pages I need to provide margin of 10 cm.
I used CSS Media="Print"
, within which I defined the style:
@page
{
Margin-top :10cm;
}
This is working in all the browsers except Mozilla firefox. I searched for solutions and all the blogs say, Mozilla will not support @page
, but No Solution. Can someone help me on this?
Please let me know is it posible to implement in mozilla