HTML中字体加粗属性或标签

版权声明:https://blog.csdn.net/lovexiuwei https://blog.csdn.net/lovexiuwei/article/details/82668448
  • 字体加粗属性

  • <style type="text/css">
        .类名{
            font-weight: 700;//加粗
            font-weight: 400;//正常
        }
    </style>
  • 字体加粗标签

  • <b>
        <p>我是字体加粗b标签</p>
    </b>
    
    <strong>
        <p>我是字体加粗strong标签</p>
    </strong>

猜你喜欢

转载自blog.csdn.net/lovexiuwei/article/details/82668448