【CSS】font-weight
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로 설정하면
문자가 가늘어집니다
Reference
이 문제에 관하여(【CSS】font-weight), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/mikimikiman/items/0559ce3789610c208124텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)