I'm generating a word document with PHP (HTML with ms-word header), is there a way make a page break ?
Right now I'm witing a lot of <p> &开发者_如何学Golt;/p>
until the page changes, but that's far from satisfying.
I've not tested to see if it works, but you could try:
<div style="page-break-before:always" />
A page-break has no meaning in HTML. It's more elegant to mark up the text which should be on the next page with, let's say
精彩评论