font-synthesis-style
Baseline 2023Newly available
Since March 2023, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
Die font-synthesis-style
CSS Eigenschaft ermöglicht es Ihnen, anzugeben, ob der Browser die oblique Schriftart synthetisieren darf, wenn sie in einer Schriftfamilie fehlt.
Es ist oft praktisch, die Abkürzungseigenschaft font-synthesis
zu verwenden, um alle Werte für die Schrifterstellung zu steuern.
Syntax
/* Keyword values */
font-synthesis-style: auto;
font-synthesis-style: none;
font-synthesis-style: oblique-only;
/* Global values */
font-synthesis-style: inherit;
font-synthesis-style: initial;
font-synthesis-style: revert;
font-synthesis-style: revert-layer;
font-synthesis-style: unset;
Werte
auto
-
Gibt an, dass die fehlende oblique Schriftart bei Bedarf vom Browser synthetisiert werden darf.
none
-
Gibt an, dass die Synthetisierung der fehlenden oblique Schriftart durch den Browser nicht erlaubt ist.
oblique-only
-
Entspricht
auto
, jedoch findet keine Schrifterstellung statt, wennfont-style: italic
gesetzt ist.
Formale Definition
Anfangswert | auto |
---|---|
Anwendbar auf | all elements and text. Auch anwendbar auf ::first-letter und ::first-line . |
Vererbt | Ja |
Berechneter Wert | wie angegeben |
Animationstyp | diskret |
Formale Syntax
Beispiele
Deaktivieren der Synthetisierung der obligen Schriftart
Dieses Beispiel zeigt, wie die Synthetisierung der obligen Schriftart durch den Browser in der Montserrat
-Schrift deaktiviert wird.
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;
}
Ergebnis
Vergleich der font-synthesis-style Werte
Dieses Beispiel vergleicht alle font-synthesis-style
Werte mit kursiv und oblique gestylten Texten.
HTML
<div class="fss-none">
<h2>font-synthesis-style: none</h2>
<p class="oblique">This text is set to <code>oblique</code></p>
<p class="italic">This text is set to <code>italic</code></p>
</div>
<div class="fss-oblique">
<h2>font-synthesis-style: oblique</h2>
<p class="oblique">This text is set to <code>oblique</code></p>
<p class="italic">This text is set to <code>italic</code></p>
</div>
<div class="fss-oblique-only">
<h2>font-synthesis-style: oblique-only</h2>
<p class="oblique">This text is set to <code>oblique</code></p>
<p class="italic">This text is set to <code>italic</code></p>
</div>
CSS
/* Specify style of the font synthesis */
.fss-none {
font-synthesis-style: none;
}
.fss-oblique {
font-synthesis-style: oblique;
}
.fss-oblique-only {
font-synthesis-style: oblique-only;
}
/* Set font styles */
.oblique {
font-style: oblique;
}
.italic {
font-style: italic;
}
/* Styles for the demonstration */
.oblique::after {
content: " (font-style: oblique)";
font-size: 0.8rem;
vertical-align: sub;
}
.italic::after {
content: " (font-style: italic)";
font-size: 0.8rem;
vertical-align: sub;
}
Ergebnis
Spezifikationen
Specification |
---|
CSS Fonts Module Level 4 # font-synthesis-style |