font-synthesis-position
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
font-synthesis-position
は CSS のプロパティで、下付き文字と上付き文字の「位置」の書体がフォントファミリーになく、 font-variant-position
を使用して位置を設定する場合に、ブラウザーが合成するかどうかを指定することができます。
font-synthesis-position
プロパティは <sup>
および <sub>
要素を使用しているときには効果がありません。
すべての書体合成値を制御するために、多くの場合は一括指定プロパティ font-synthesis
を使用した方が便利です。
構文
css
/* キーワード値 */
font-synthesis-position: auto;
font-synthesis-position: none;
/* グローバル値 */
font-synthesis-position: inherit;
font-synthesis-position: initial;
font-synthesis-position: revert;
font-synthesis-position: revert-layer;
font-synthesis-position: unset;
値
公式定義
初期値 | none |
---|---|
適用対象 | すべての要素とテキスト。 ::first-letter および::first-line にも適用されます。 |
継承 | あり |
計算値 | 指定通り |
アニメーションの種類 | 離散値 |
形式文法
font-synthesis-position =
auto |
none
例
位置の書体の合成の無効化
この例は、 Montserrat
フォントでブラウザーによる位置の書体の合成をオフにすることを示しています。
HTML
html
<p>
These are the default position <span class="super">superscript</span>,
position <span class="sub">subscript</span>, <strong>bold</strong> and
<em>oblique</em> typefaces.
</p>
<p class="no-syn">
The positions <span class="super">superscript</span> and
<span class="sub">subscript</span> typeface is turned off here but not the
<strong>bold</strong> and <em>oblique</em> typefaces (on browsers that support
<code>font-synthesis-position</code>).
</p>
CSS
css
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
* {
font-family: "Montserrat", sans-serif;
}
.super {
font-variant-position: super;
}
.sub {
font-variant-position: sub;
}
.no-syn {
font-synthesis-position: none;
}
結果
仕様書
Specification |
---|
CSS Fonts Module Level 4 # font-synthesis-position |
ブラウザーの互換性
BCD tables only load in the browser