PDFreactor:
3.0.3311 (2008-07-07)
edit-on Pro:
5.3.228 (2008-12-04)
edit-on JavaBean SDK:
5.3.310 (2008-10-24)
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.