By default, PDFs are created with a margin of .75in (documents created using Pipelines 1-3 may have larger default margins).
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>