「CSS」font-weightで文字の太さを数字で指定するサンプル

2021年8月24日

書式
font-weight: 数値
使用例

<style>
  .cftA {
    font-weight: 100; 
  } 
  .cftB {
    font-weight:900; 
  } 
 
</style>
<p class="cftA">data 1111l</p>
<p class="cftB">data 22222</p>

 

CSS

Posted by arkgame