CSS font-weight 属性
CSS font-weight 属性用于设置文本的粗细
默认值 | normal |
---|---|
继承 | yes |
版本 | CSS1 |
JavaScript 语法 | object.style.fontWeight="900" |
语法
font-weight: normal|bold|lighter|inherit | 100|200|300|400|500|600|700|800|900
属性值
值 | 描述 |
---|---|
normal | 默认值。定义标准的字符 |
bold | 定义粗体字符 |
bolder | 定义更粗的字符 |
lighter | 定义更细的字符 |
100 200 300 400 500 600 700 800 900 |
定义由粗到细的字符 400 等同于 normal,而 700 等同于 bold |
inherit | 规定应该从父元素继承字体的粗细 |
浏览器支持
下表中的数字表示支持该属性的第一个浏览器版本号
2.0 | 4.0 | 1.0 | 1.3 | 3.5 |
范例
三段文字设置不同的字体粗细
p.normal {font-weight:normal;} p.thick {font-weight:bold;} p.thicker {font-weight:900;}