フォントの表示形式(スタイル)を指定します。
IE3 / IE4 / IE5 / IE5.5 / IE6 / N4 / N6 / N7 / O6 / O7 / O9 / Fx1 / Fx2 / IE5 mac
要素[.class名][#id名]{ font-style : 値; }
値 | 初期値 | 意味 |
normal | ○ | 普通のスタイルです。 |
italic | イタリック体にします。 | |
oblique | 斜体にします。 | |
inherit | 親要素の値を継承します。 |
<html> <head> <title>サンプルコード</title> <style type="text/css"> #sample1 { font-style : normal; } #sample2 { font-style : italic; } #sample3 { font-style : oblique; } </style> </head> <body> <div id="sample1">font-styleサンプル1</div> <div id="sample2">font-styleサンプル2</div> <div id="sample3">font-styleサンプル3</div> </body> </html>
font / font-size / font-variant / font-weight / line-height / font-family