Hi There,
I am trying to use HtmlToPdfConverter from the Syncfusion.HtmlToPdfConverter46 nuget package with WebKit to save an HTML page to PDF. If I try to add a page break using "page-break-after: always;", I just end up with it adding half a page of white space to the document, but with no page break. Even testing with:
<div>
hello world
</div>
<p style="page-break-after: always;"></p>
<div>
hello world
</div>
Results in a document of length one page with "hello world" at the top, and halfway down the page. Is there something I have missed in using the page break functionality?
Thanks