PHP & JavaScript Room :: 設置サンプル

実行結果

font-size: 120%;

font-size: 0.8em;

font-size: 11pt;

font-size: 10px;

ソース

<style type="text/css">
    .pe { font-size: 120%; }  /* パーセント指定(相対サイズ指定) */
    .8em { font-size: 0.8em; } /* em 指定(相対サイズ指定) */
    .pt { font-size: 11pt; }  /* ポイント指定(絶対サイズ指定) */
    .px { font-size: 10px; }  /* ピクセル指定(絶対サイズ指定) */
</style>

<p class='pe'>font-size: 120%;</p>
<p class='8em'>font-size: 0.8em;</p>
<p class='pt'>font-size: 11pt;</p>
<p class='px'>font-size: 10px;</p>

polarized women