Hi I tried to convert an HTML to PDF with this structure: first page with (page-break-after) and second page. If I attached the footer in every page I obtain an extra page blank. In order to verify if it's the content of the pages that ends in a new page I colored the background of my pages but I saw that the HTML content is in the first two pages, the third page is blank. There is a way to remove this page?
<html>
<head>
</head>
<body>
<div id="paginauno" name="paginauno" style="width:100%; page-break-after:always;">
.....
</div>
<div id="paginadue" name="paginadue" style="width:100%; background-color:red;">
.....
</div>
</body>