I'm using HTML and CSS to generate a document for printing with wkhtmltopdf. In css I use the @page media and here is my html :
<div class="page">
<div id="content"/>
</div>
My content div has a lot of content and spread across pages. I would like that the content has a different margin on the first page, and then margins depending if the page is even or odd.
Is that possible?