字体/フォント

Since: 23rd/May/2002; Last Modified: 24th/May/2002

フォントのスタイルの指定 - font-style

多くのブラウザのデフォルト・スタイルシートは、 address 要素のフォントはイタリック体(斜体)で表現します。いま、フォントのスタイルを次のように指定することにします:

外部スタイルシート ango.css を次のように編集/保存してください。

body { background: url("./rindou5.gif") navy;
    color: #ccf }
h1 { font-style: italic }
p { background : #ccf;
    color: navy }
address { font-style: normal }

yonagahime.html をブラウザで開くと、 h1 要素は斜体、 address 要素は通常のフォントで表示されている事が確認できます。

font-style で選べるパラメタ
normal通常のフォント
italicイタリック体用フォント
oblique通常のフォントを傾けたもので、ほとんどの場合 italic と変わらない
inherit親要素の指定を継承

Copyright © 2002 SUGAI, Manabu.. All Rights Reserved.