I\'m trying to use Google Chrome as a replacement of PhantomJS to render HTML into PDF. So far it\'s been working well for me. The only issue I have that I have not found an
There are two solutions to your problem
A) Push the chrome-header out by leaving no margin :
@page {
margin: 0;
size: auto;
}
or
@media print {
@page { margin: 0; }
body { margin: 1.6cm; }
}
B) Originally a Firefox solution which should world for Chrome
some sample:
Print PDF without header
Some Text in Paragraph to print!
Print