例
对于三段设置不同的字体重量:
p.normal {
font-weight: normal;
}
p.thick {
font-weight: bold;
}
p.thicker {
font-weight: 900;
}
试一试» 定义和用法
该font-weight属性设置如何在文本厚或薄的字符应显示。
默认值: | normal |
---|---|
遗传: | yes |
动画: | yes. Read about animatable Try it |
版: | CSS1 |
JavaScript语法: | object .style.fontWeight="bold" Try it |
浏览器支持
在表中的数字规定,完全支持该属性的第一个浏览器版本。
属性 | |||||
---|---|---|---|---|---|
font-weight | 2.0 | 4 | 1.0 | 1.3 | 3.5 |
CSS语法
font-weight: normal|bold|bolder|lighter|number|initial|inherit;
属性值
值 | 描述 | 播放 |
---|---|---|
normal | 定义普通字符。 这是默认 | 播放 ” |
bold | 定义粗体字符 | 播放 ” |
bolder | 定义较厚的字符 | 播放 ” |
lighter | 定义更轻字符 | 播放 ” |
100 200 300 400 500 600 700 800 900 | 定义由稀到稠的字符。 400是一样的正常和700是一样的加粗 | 播放 ” |
initial | 将此属性设置为默认值。 阅读关于初始 | 播放 ” |
inherit | 继承其父元素此属性。 阅读关于继承 |
相关页面
CSS教程: CSS字体
CSS参考: font property
HTML DOM参考: fontWeight property