★font-size(フォントのサイズ)

戻る

font-size(フォントのサイズ)


解説
文字の大きさを指定する属性です。
HTMLのfontエレメント、basefontエレメントは廃止予定です。これらのsizeアトリビュートはスタイルシートで指定するように推奨されてます。このfont-size属性で指定出来ます。

<absolute-size>
<relative-size>
<length>
<percentage>

初期値

medium

%値の基準 親エレメントとの相対サイズ

適用

全てのエレメント

継承

する


対応状況
全ての値 L1 L2 N4 N6 N7 O6 O7 ff1 NA1 GA1 MO1 K2 K3 E3 E4 E5 ME5 E55 E6

使用例

ソース

スタイル部に、

.fontsize1{font-size:1cm;}
.fontsize2{font-size:0.5in;}
.fontsize3{font-size:1pc;}
.fontsize4{font-size:1em;}
.fontsize5{font-size:1ex;}
.fontsize6{font-size:x-small;}
.fontsize7{font-size:small;}
.fontsize8{font-size:large;}
.fontsize9{font-size:xx-large;}
.fontsize10{font-size:smaller;}
.fontsize11{font-size:larger;}
.fontsize12{font-size:200%;}

と記述し、

body部に、

<span class="fontsize1">1cmです。</span>
<span class="fontsize2">0.5inです。</span>
<span class="fontsize3">1pcです。</span>
<span class="fontsize4">1emです。</span>
<span class="fontsize5">1exです。</span><br>
<span class="fontsize6">x-smallです。</span>
<span class="fontsize7">smallです。</span>
<span class="fontsize8">largeです。</span>
<span class="fontsize9">xx-largeです。</span><br>
<span class="fontsize10">smallerです。</span>
<span class="fontsize11">largerです。</span>
<span class="fontsize12">200%です。</span>
<div>これは標準の文字です。</div>

と記述すると。

表示&操作

1cmです。 0.5inです。 1pcです。 1emです。 1exです。
x-smallです。 smallです。 largeです。 xx-largeです。
smallerです。 largerです。 200%です。
これは標準の文字です。


と表示されます。


Copyright (C) pokochan 2000-2005
http://www.tees.ne.jp/~pokochan/style/font-size.html
E-mailpokochan@mx1.tees.ne.jp