CSS font-stretch Property Reference
The CSS font-stretch property is a obsolete property in CSS Fonts. Review its formal syntax, computed behavior, and practical declarations.
Updated 2026-08-12
font-stretch overview
The CSS font-stretch property is a obsolete property in CSS Fonts. Review its formal syntax, computed behavior, and practical declarations.
The computed value normally inherits from the parent element when no declaration wins the cascade.
Syntax and formal definition
| Field | Value |
|---|---|
| Formal syntax | <font-stretch-absolute> |
| Initial value | normal |
| Applies to | allElementsAndText |
| Inherited | Yes |
| Percentages | no |
| Computed value | asSpecified |
| Animation type | byComputedValueType |
| Media | visual |
| Specification group | CSS Fonts |
| Status | Obsolete |
Practical examples
These declarations demonstrate valid ways to set font-stretch. The initial and inherit global keywords remain available even when a property-specific value is preferable.
CSS
.reset-example {
font-stretch: initial;
}
.inherit-example {
font-stretch: inherit;
}
@supports (font-stretch: initial) {
.supported {
font-stretch: initial;
}
}