Hello,
I would like to use your html to pdf in order to generate a pdf document composed of a table that needs to be expanded to the length of an A4 page, even if the table does not have enough content for that. Using the following HTML, the table stretches in the browser to fill the window length:
Quote:
<table height="100%" style="border-style:solid">
<tr>
<td>something</td>
</tr>
</table>
However, I cannot replicate the same behavior when converting the HTML to PDF, no matter how I set the output area. The height of the table will not pass a certain threshold. Is there a setting that I am missing or is it not possible without specifying the height in pixels?