PDFreactor:
3.0.3311 (2008-07-07)
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.2 How can I avoid a page Break?
You can avoid page breaks by using the corresponding CSS properties. The property "page-break-inside: avoid;" will avoid page breaks within an element, if possible. Conversely, the properties "page-break-before: avoid;" and "page-breaks-after: avoid;" will avoid page breaks before respectively after the elements they are specified for. In this example, no page break will be inserted after a table:
table { page-break-after: avoid }
For more information, please see the chapter Page Breaks in the PDFreactor manual.