項 目
1.現在の表示(使用OS、ブラウザにより表示画面が異なります。)
body {
font-family: 'メイリオ', Meiryo, 'Lucida Grande', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', sans-serif;
font-size: 100%;
}


※サホートしていない表示に比べ英数全角文字が等幅フォントになります。

※ブラウザの仕様によ文字幅が異なるためレイアウトが崩れてしまいます。
最新のブラウザは一部を除き基準値が統一されレイアウトの崩れは解消傾向にあります。
| 10px | 10pt | 10mm | 1ex | 1em | 1pc | 1cm | 1in(25.4mm) |
| 10px | 10pt | 10mm | 1ex | 1em | 1pc | 1cm | 1in |
| 絶対サイズ | xx-small | x-small | small | medium | large | x-large | xx-large | - |
| h1-h6要素 | h6 |
- | h5 |
h4 |
h3 |
h2 |
h1 |
- |
| font要素 | 1 | - | 2 | 3 | 4 | 5 | 6 | 7 |
| パーセンテージ | 62.5% | 75% | 81.3% | 100% | 112.5% | 150% | 200% | 300% |
| ピクセル | 10px | 12px | 13px | 16px | 18px | 24px | 32px | 48px |
| font-size 単位 | 表示文字(指定) | ||
|---|---|---|---|
| px | % | em | 文字のstyle |
| 1 | 6.3 | 0.06 | 文字のstyle |
| 2 | 12.5 | 0.13 | 文字のstyle |
| 3 | 18.8 | 0.19 | 文字のstyle |
| 4 | 25 | 0.25 | 文字のstyle |
| 5 | 31.3 | 0.31 | 文字のstyle |
| 6 | 37.5 | 0.38 | 文字のstyle |
| 7 | 43.8 | 0.44 | 文字のstyle |
| 8 | 50 | 0.50 | 文字のstyle |
| 9 | 56.3 | 0.56 | 文字のstyle |
| 10 | 62.5 | 0.63 | 文字のstyle |
| 11 | 68.8 | 0.69 | 文字のstyle |
| 12 | 75 | 0.75 | 文字のstyle |
| 13 | 81.3 | 0.81 | 文字のstyle |
| 14 | 87.5 | 0.88 | 文字のstyle |
| 15 | 93.8 | 0.94 | 文字のstyle |
| 16 | 100 | 1 | 文字のstyle |
| 17 | 106.3 | 1.06 | 文字のstyle |
| 18 | 112.5 | 1.13 | 文字のstyle |
| 19 | 118.8 | 1.19 | 文字のstyle |
| 20 | 125 | 1.25 | 文字のstyle |
| 21 | 131.3 | 1.31 | 文字のstyle |
| 22 | 137.5 | 1.38 | 文字のstyle |
| 23 | 143.8 | 1.44 | 文字のstyle |
| 24 | 150 | 1.5 | 文字のstyle |
| 25 | 156.3 | 1.56 | 文字のstyle |
| 26 | 162.5 | 1.63 | 文字のstyle |
| 27 | 168.8 | 1.69 | 文字のstyle |
| 28 | 175 | 1.75 | 文字のstyle |
| 29 | 181.3 | 1.81 | 文字のstyle |
| 30 | 187.5 | 1.88 | 文字のstyle |
| 31 | 193.8 | 1.94 | 文字のstyle |
| 32 | 200 | 2 | 文字のstyle |
| 48 | 300 | 3 | 文字のstyle |
| 64 | 400 | 4 | 文字のstyle |
| 80 | 500 | 5 | 文字のstyle |
| 96 | 600 | 6 | 文字のstyle |
| 100 | 625 | 6.25 | 文字のstyle |
基本は16pxなので「12÷16=0.75」となり75%(パーセント)となりますので、bodyに75%を設定します。
body {
font-size: 75%; /*基本サイズは12px*/
}
h2 {
font-size: 200%; /*基本サイズは12px*/
}
html{
font-size: 62.5%; /*基本サイズは10px*/
}
body {
font-size: 1.2rem; /*12px指定*/
font-size: 12px; /*IE対策*/
}
この設定でh2要素を24pxにする場合
h2{
font-size: 2.4rem;
font-size: 24px; /*IE対策*/
}