・フォント関連プロパティ
- font-family :
[[ <family-name>
| <generic-family>
],]* [ <family-name>
| <generic-family>
]
- 使用例
- font-family: "MS ゴシック", Osaka, sans-serif;
- font-style : [ normal | italic | oblique ]
- 使用例
- font-style: italic;
- font-variant : [ normal | small-caps ]
- 使用例
- font-variant: small-caps;
- font-weight : [ normal | bold | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 ]
- 使用例
- font-weight: bolder;
- font-size :
[ <absolute-size>
| <relative-size>
| <length>
| <percentage>
]
- 使用例
- font-size: x-large;
- font-size: 150%;
- font-size: 11px;
- font-size: 0.8em;
- font : [ <font-style> || <font-variant> || <font-weight> ]? <font-size> [ / <line-height> ]? <font-family>
- ※fontプロパティは上記のfont-***プロパティの組み合わせで実現できるため、
- 詳細な説明は省略します。
- 使用例
- font: 12pt/14pt sans-serif;
- font: 80% sans-serif;
- font: x-large/110% "new century schoolbook", serif;
- font: bold italic large Palatino, serif;
- font: normal small-caps 120%/120% fantasy;
|