CSS font-weight 属性

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> 

以下是产生的结果:

CSS font-weight 属性

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程