css加粗属性是什么,好像以前的b标签取消了,为了规范化,整在css里了
13 回答
已采纳
慕莱坞9220042
TA贡献377条经验 获得超508个赞
你好:
CSS font-weight 属性
例子:
<html> <head> <style type="text/css"> p.normal {font-weight: normal} p.thick {font-weight: bold} p.thicker {font-weight: 900} </style> </head> <body> <p class="normal">This is a paragraph</p> <p class="thick">This is a paragraph</p> <p class="thicker">This is a paragraph</p> </body> </html>
望采纳!
刚毅87
TA贡献345条经验 获得超309个赞
strong 标签和 css 样式 font-weight 都可以设置,font-weight有两个属性 bold 和 bolder, 还可以通过设置数值来改变粗细程度.
望采纳
- 13 回答
- 0 关注
- 2968 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消