CSS reading-flow Property Reference
The CSS reading-flow property is a standard property in CSS Display. Review its formal syntax, computed behavior, and practical declarations.
Updated 2026-08-12
reading-flow overview
The CSS reading-flow property is a standard property in CSS Display. 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 | normal | source-order | flex-visual | flex-flow | grid-rows | grid-columns | grid-order |
| Initial value | normal |
| Applies to | blockContainersFlexContainersGridContainers |
| Inherited | No |
| Percentages | no |
| Computed value | asSpecified |
| Animation type | notAnimatable |
| Media | visual |
| Specification group | CSS Display |
| Status | Standard |
Practical examples
These declarations demonstrate valid ways to set reading-flow. The initial and inherit global keywords remain available even when a property-specific value is preferable.
CSS
.reset-example {
reading-flow: initial;
}
.inherit-example {
reading-flow: inherit;
}
@supports (reading-flow: initial) {
.supported {
reading-flow: initial;
}
}