| page-break-inside | NN n/a IE n/a CSS 2 |
| Inherited: Yes | |
Defines whether a printed page break is allowed within an element. Especially useful to define a container of multiple block elements that you want to keep printed on the same page. |
|
| CSS Syntax | |
page-break-inside: breakType
|
|
| Value | |
One of two constant values: avoid | auto. |
|
| Initial Value | |
auto |
|
| Example | |
div.together {page-break-inside: avoid}
|
|
| Applies To | |
Block-level elements. |
|