1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

font-weight:900;って何?!

Last updated at Posted at 2019-03-17

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;}

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?