CSS font-weight 속성

1 개요[ | ]

CSS font-weight Property
CSS font-weight 속성
html
Copy
<style>
div:nth-of-type(2) { font-weight: normal; }
div:nth-of-type(3) { font-weight: bold; }
div:nth-of-type(4) { font-weight: 900; }
</style>

<div>Hello 안녕하세요</div>
<div>Hello 안녕하세요 normal</div>
<div>Hello 안녕하세요 bold</div>
<div>Hello 안녕하세요 900</div>

2 같이 보기[ | ]

3 참고[ | ]