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