1. 程式人生 > >HTML中字型加粗屬性或標籤

HTML中字型加粗屬性或標籤

  • 字型加粗屬性

  • <style type="text/css">
        .類名{
            font-weight: 700;//加粗
            font-weight: 400;//正常
        }
    </style>
  • 字型加粗標籤

  • <b>
        <p>我是字型加粗b標籤</p>
    </b>
    
    <strong>
        <p>我是字型加粗strong標籤</p>
    </strong>