
Announcements
Hello
I want to ask if there is a way to make page breaks in HTML to convert to PDF without using a third party?
Thanks in advance,
Mihaela
Add the following code where you want an empty page in your html:
<div style="height:100vh;">
</div>This will append an empty div of a page's height.
Or you can use:
<br>