web developer

[css] font-weight (글씨 굵기) 속성 본문

CSS

[css] font-weight (글씨 굵기) 속성

trueman 2022. 3. 23. 17:32
728x90
728x90

font-weight 

<p style="font-weight: normal;">normal</p>
<p style="font-weight: bold;">bold</p>
<p style="font-weight: bolder;">bolder</p>
<p style="font-weight: lighter;">lighter</p>
<p style="font-weight: 100;">100</p>
<p style="font-weight: 200;">200</p>
<p style="font-weight: 300;">300</p>
<p style="font-weight: 400;">400</p>
<p style="font-weight: 500;">500</p>
<p style="font-weight: 600;">600</p>
<p style="font-weight: 700;">700</p>
<p style="font-weight: 800;">800</p>
<p style="font-weight: 900;">900</p>

See the Pen font-weight by 안중현 (@pogba10) on CodePen.


출처 : https://homzzang.com/b/css-72

728x90
728x90
Comments