【CSS】font-weight

3594 단어 CSSCSS3

font-weight



문자의 두께 변경
normal 또는 bold 지정

예.html
<p>文字の太さは普通だよ</p>

예.css
p {
  font-weight: normal;
}





normal이므로 보통 두께입니다
그러나이 normal을 bold로 변경하면 ...

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





조금 더 문자가 두꺼워졌습니다
그건 그렇고 ...



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로 설정하면



문자가 가늘어집니다

좋은 웹페이지 즐겨찾기