font-style
Baseline
Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015年7月.
font-style
属性は、テキストを通常体、イタリック体、斜体のどれを用いて表示するかどうかを指定します。
メモ:
プレゼンテーション属性であるため、 font-style
には対応する CSS プロパティ font-style
があります。両方が指定された場合、 CSS プロパティが優先されます。
この属性は以下の SVG 要素で使用できます。
例
>SVG のフォントスタイルの制御
html
<svg viewBox="0 0 250 30" xmlns="http://www.w3.org/2000/svg">
<text y="20" font-style="normal">Normal font style</text>
<text x="150" y="20" font-style="italic">Italic font style</text>
</svg>
使用上のメモ
値 | normal | italic | oblique |
---|---|
既定値 | normal |
アニメーション | 可 |
値の説明については、 CSS の font-style
プロパティを参照してください。
仕様書
Specification |
---|
CSS Fonts Module Level 4> # font-style-prop> |
ブラウザーの互換性
Loading…
関連情報
- CSS の
font-style
プロパティ