CSS page-break-inside Property Reference
The CSS page-break-inside property is a obsolete property in CSS Paged Media. Review its formal syntax, computed behavior, and practical declarations.
Updated 2026-08-12
page-break-inside overview
The CSS page-break-inside property is a obsolete property in CSS Paged Media. Review its formal syntax, computed behavior, and practical declarations.
The property is not inherited by default. Use an explicit global keyword when inheritance is intended.
Syntax and formal definition
| Field | Value |
|---|---|
| Formal syntax | auto | avoid |
| Initial value | auto |
| Applies to | blockElementsInNormalFlow |
| Inherited | No |
| Percentages | no |
| Computed value | asSpecified |
| Animation type | discrete |
| Media | visual, paged |
| Specification group | CSS Paged Media |
| Status | Obsolete |
Practical examples
These declarations demonstrate valid ways to set page-break-inside. The initial and inherit global keywords remain available even when a property-specific value is preferable.
CSS
.reset-example {
page-break-inside: initial;
}
.inherit-example {
page-break-inside: inherit;
}
@supports (page-break-inside: initial) {
.supported {
page-break-inside: initial;
}
}