font-feature-settings
Baseline
2025
Newly available
Since September 2025, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
The font-feature-settings font-feature-settings property, except for the global keyword values.
Since this descriptor sets feature values on the font object in the @font-face at-rule and not on an entire element, only some glyphs in an element may be rendered using this descriptor.
Syntax
/* Use the default settings */
font-feature-settings: normal;
/* Set values for OpenType feature tags */
font-feature-settings: "smcp";
font-feature-settings: "smcp" on;
font-feature-settings: "swsh" 2;
Values
This descriptor is specified as either the keyword normal or as a comma-separated list of <feature-tag-value> values. When rendering text, the list of OpenType <feature-tag-value> values are passed to the text layout engine to enable or disable font features.
normal-
Indicates that text is laid out using default font settings. This is the default value.
<feature-tag-value>-
Represents a space-separated tuple consisting of a tag name and an optional value.
The tag name is always a ASCII characters. If the tag name has more or fewer characters or if it contains characters outside the
U+20–U+7Ecode point range, the descriptor is invalid.The optional value can be a positive integer or the keyword
onoroff. The keywordsonandoffare synonyms for the values1and0, respectively. If no value is set, the default is1. For non-boolean OpenType features (e.g., stylistic alternates), the value implies a particular glyph to be selected; for boolean features, the value turns the feature on or off.
Formal definition
| Related Computed value | as specified |
|---|
Formal syntax
font-feature-settings =
normal #
Examples
>Enabling swash glyphs using the @font-face at-rule
In this example, the tag name swsh and a boolean value 1 are used as the value for the font-feature-settings descriptor in the @font-face at-rule.
HTML
<p class="swash-off">Swash is off here</p>
<p class="swash-on">Swash is on here</p>
CSS
@font-face {
font-family: "MonteCarlo";
src: url("/shared-assets/fonts/monte-carlo/monte-carlo-regular.woff2");
}
@font-face {
font-family: "MonteCarlo2";
src: url("/shared-assets/fonts/monte-carlo/monte-carlo-regular.woff2");
font-feature-settings: "swsh" 1;
}
p {
font-size: 3rem;
margin: 0.7rem 3rem;
}
.swash-off {
font-family: "MonteCarlo", cursive;
}
.swash-on {
font-family: "MonteCarlo2", cursive;
}
Result
Line 1 shows the default ornate design of the swash glyphs.
Specifications
| Specification |
|---|
| CSS Fonts Module Level 4> # font-rend-desc> |
Browser compatibility
See also
- Other
@font-facedescriptors:src - Related font properties:
font-variation-settings