This property specifies the page-breaking behavior that should occur
inside an element's rendering box. Page breaks are not allowed in
absolutely positioned elements.
CSS2 "suggests" when page-breaking should occur:
Page-breaking should occur as few times as possible.
Page-breaking should be avoided inside these elements:
tables, floated elements and block elements with borders.
Pages that are not forced to break should have approximately the same height.
Allowed Values
inherit
[CSS2|CSS2.1]
[O4]
Type: Explicit
Description:
Explicitly sets the value of this property to that of the parent.
auto
[CSS2|CSS2.1]
[O3.5]
Type: Explicit
Description:
Insert page breaks inside the element box as necessary.
avoid
[CSS2|CSS2.1]
[O3.5]
Type: Explicit
Description:
Avoid inserting page breaks inside the current element box if possible.
Example
Ext/Doc: p {
page-break-inside: auto }
In-Line: <pSTYLE="page-break-inside:
auto">test text in the paragraph</p>