PDFreactor:
3.0.2995 (2008-04-15)
edit-on Pro:
5.2.221 (2008-06-23)
edit-on JavaBean SDK:
5.1.290 (2007-11-07)
TYPO3 Extension:
2.0.2 (2007-06-14)
3.1 How can I place a page break?
You can place a page break using one of the CSS properties "page-break-before: always;" or "page-break-after: always;". The former property will always cause a page break before the element it is applied to, while the latter will cause it after the element. For example, this code will enforce a page break after the div with the class selector "1", no matter if one is required or not:
div.1 { page-break-after: always; }
For further reference, please see the chapter Page Breaks in the PDFreactor manual.