By default, PDFs are created with a margin of .75in.
You can set the following adjust attributes within the @page
CSS selector: margin, border, padding and background. A margin of 0
will generate a full-bleed page.
<style>
@page {
margin: 0;
padding: 2in;
background: #cccccc;
}
</style>