Forum How do I...?

Manual page break

ixgal
hi!
Is it possible to add a manual page break in the PDF? That is to say, some code in the HTML that will produce a page break.
Thanks
phillipgessert
I usually use some variant of

<hr class="page-break" />

.page-break {
  border: none;
  margin: 0;
  page-break-before: always;   
}

ixgal
thanks. Is it possible to use it inside a span, for example? (because I use the same code for PDF and for web, and if I add an hr, I would be creating an extra line that will look strange in web. Whereas if I use span, maybe this problem won't happen
csant