I am printing web page using Javascript but I got header and footer contain page title, file path, page number, and date. How do I remove them?
I found similar questions related to this problem like below
But every solution says to set margin:0
in @page
I tried that as
@page {
size: A4 landscape;
margin: 0;
}
body {
margin: 30pt;
}
It works fine on the first page of my printed page. From the second page onwards, the margin goes to zero.
I have also tried moznomarginboxes
but which is deprecated now.