CSS page Property Reference
The CSS page property is a standard property in CSS Paged Media. Review its formal syntax, computed behavior, and practical declarations.
Updated 2026-08-12
page overview
The CSS page property is a standard 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 | <custom-ident> |
| Initial value | auto |
| Applies to | blockElementsInNormalFlow |
| Inherited | No |
| Percentages | no |
| Computed value | asSpecified |
| Animation type | discrete |
| Media | paged |
| Specification group | CSS Paged Media |
| Status | Standard |
Practical examples
These declarations demonstrate valid ways to set page. The initial and inherit global keywords remain available even when a property-specific value is preferable.
CSS
.reset-example {
page: initial;
}
.inherit-example {
page: inherit;
}
@supports (page: initial) {
.supported {
page: initial;
}
}