Skip to content

font-weight

文本大小就相当于是word里面的粗细。

  • 默认粗细:normal
  • 用法:
css
font-weight: bold;
font-weight: 800;
属性值描述
normal默认值。定义标准的字符。
bold定义粗体字符
bolder定义更粗的字符。
lighter定义更细的字符。
100 200 300 400 500 600 700 800 900定义由细到粗的字符。400 等同于 normal,而 700 等同于 bold。数值采取离散式定义(使用 100 的整倍数)。数值为实数,非 100 的整数倍的值将被四舍五入转换为 100 的整倍数,遇到 *50 时,将向上转换,如 150 将转换为 200 。

试一下