-
字体加粗属性
-
<style type="text/css"> .类名{ font-weight: 700;//加粗 font-weight: 400;//正常 } </style>
-
字体加粗标签
-
<b> <p>我是字体加粗b标签</p> </b> <strong> <p>我是字体加粗strong标签</p> </strong>
HTML中字体加粗属性或标签
最新推荐文章于 2025-03-18 17:00:28 发布
<style type="text/css">
.类名{
font-weight: 700;//加粗
font-weight: 400;//正常
}
</style>
<b>
<p>我是字体加粗b标签</p>
</b>
<strong>
<p>我是字体加粗strong标签</p>
</strong>