font-weight 属性设置文本粗细的几种方法

发布时间:2020-01-18编辑:脚本学堂
本文介绍下,在css中使用font-weight设置文本粗细的几种方法,有需要的朋友参考下吧。

在css中,font-weight属性,用于设置显示元素的文本中所用的字体加粗。
数字值 400 相当于 关键字 normal,700 等价于 bold。
每个数字值对应的字体加粗必须至少与下一个最小数字一样细,而且至少与下一个最大数字一样粗。

设置三个段落的字体的粗细:
 

p.normal {font-weight:normal;}
p.thick {font-weight:bold;}
p.thicker {font-weight:900;}

浏览器支持
所有主流浏览器都支持 font-weight 属性。

注释:任何的版本的 Internet Explorer (包括 IE8)都不支持属性值 "inherit"。

font-weight属性值
css font-weight属性