【CSS】【 font-style 】フォントのスタイルを指定する方法
【CSS】
【 font-style 】プロパティ
フォントのスタイルを指定する方法
「font-style」プロパティは、
「フォント」のスタイルを指定する「CSSプロパティ」。
他の文章との差別化をするのに、良く使われる。
「フォント」のスタイルは、
・通常体
・筆記体
・斜体
から選ぶことができる。
「font-style」プロパティの使い方
「font-style」プロパティは、
「フォント」のスタイルを指定する「CSSプロパティ」。
「font-style」プロパティの値
値 | 説明 |
normal |
通常体
通常のフォントスタイル。
|
italic |
筆記体。
装飾されていない書体より、水平方向の幅が小さい。
|
oblique |
斜体。
通常のフェイスを傾けた書体。
傾きの角度を指定できるようになっていて、
角度値は、「-90deg 〜90deg」の角度が指定できる。
|
「font-style」プロパティの書式
font-style: normal;
font-style: italic;
font-style: oblique;
font-style: oblique 10deg;
■ グローバル値
font-style: inherit;
font-style: initial;
font-style: revert;
font-style: unset;
Back