boldとかlighterなら知ってるけど数値?!
実はfont-weightは数値で管理されていて、100~900まであります。
ちょっと細かく
font-weight | 100 | 一番細い |
font-weight | 400(normal) | 初期値 |
font-weight | 700(bold) | 太い |
font-weight | 900 | 一番太い |
font-weight | lighter | 相対的に一段階細くなる |
font-weight | bolder | 相対的に一段階太くなる |
どんな時に使うか
フォントの太さ変えるときに使いましょーー
使い方
code
h1{ font-weight: 900;}
p{ font-weigth: bold;}
a{ font-weigth: lighter;}