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