CSS font-weight 属性
描素
font-weight 属性改变元素中字符的视觉粗细。
可能的值
- 100, 200, 300, 400, 500, 600, 700, 800 和 900 − 定义了从细到粗的字符。400 表示与 normal 相同,700 表示与 bold 相同。
-
normal − 默认值。表示普通字符,相当于值 400。
-
bold − 相当于值 700。
-
bolder − 元素的字体粗细应该比父元素的字体粗细更重。
-
lighter − 元素的字体粗细应该比父元素的字体粗细更轻。
适用于
所有的 HTML 元素。
DOM 语法
object.style.fontWeight = "900";
示例
这是使用该属性的示例:
<html>
<head>
</head>
<body>
<p style = "font-weight:bold;">
This font is bold.
</p>
<p style = "font-weight:bolder;">
This font is bolder.
</p>
<p style = "font-weight:500;">
This font is 500 weight.
</p>
</body>
</html>
以下是产生的结果: