The font-synthesis-style
CSS property lets you specify whether or not the browser may synthesize the oblique typeface when it is missing in a font family.
It is often convenient to use the shorthand property font-synthesis
to control all typeface synthesis values.
Syntax
font-synthesis-style: auto;
font-synthesis-style: none;
font-synthesis-style: inherit;
font-synthesis-style: initial;
font-synthesis-style: revert;
font-synthesis-style: revert-layer;
font-synthesis-style: unset;
Values
-
auto
-
Indicates that the missing oblique typeface may be synthesized by the browser if needed.
-
none
-
Indicates that the synthesis of the missing oblique typeface by the browser is not allowed.
font-synthesis-style =
auto |
none
Disabling synthesis of oblique typeface
This example shows turning off synthesis of the oblique typeface by the browser in the Montserrat
font.
HTML
<p class="english">
This is the default <em>oblique typeface</em> and
<strong>bold typeface</strong>.
</p>
<p class="english no-syn">
The <em>oblique typeface</em> is turned off here but not the
<strong>bold typeface</strong>.
</p>
CSS
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
.english {
font-family: "Montserrat", sans-serif;
}
.no-syn {
font-synthesis-style: none;
}
Result
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
font-synthesis-style |
97 |
97 |
111 |
No |
83 |
16.4 |
97 |
97 |
111 |
68 |
16.4 |
18.0 |