0
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.

【CSS】font-weight

Posted at

font-weight

:sunny: 文字の太さを変える
:sunny: normal もしくは bold を指定する

例.html
<p>文字の太さは普通だよ</p>
例.css
p {
  font-weight: normal;
}

Web

スクリーンショット 2020-01-20 19.37.43.png

normal なので普通の太さです:sweat_smile:
しかしこの normal を bold に変更すると・・・

例.css
p {
  font-weight: bold;
}

Web

スクリーンショット 2020-01-20 19.40.28.png

さっきと比べて文字が太くなりました:laughing:
ちなみに・・・

スクリーンショット 2020-01-20 19.43.52.png

h1〜h6 はデフォルトで太字設定されています。
なので

例.css
h1 {
  font-weight: normal;
}

h2 {
  font-weight: normal;
}

h3 {
  font-weight: normal;
}

h4 {
  font-weight: normal;
}

h5 {
  font-weight: normal;
}

h6 {
  font-weight: normal;
}

で normal に設定すると

スクリーンショット 2020-01-20 19.46.14.png

文字が細くなります:laughing:

0
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
0
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?