📜  CSS 字体粗细体

📅  最后修改于: 2020-11-04 05:58:16             🧑  作者: Mango

CSS 字体粗细

此属性用于设置字体的粗细和粗体。用于定义文本的粗细。可用的粗细取决于浏览器使用的字体系列。

句法

font-weight: normal | lighter | bolder | bold | number | inherit |initial | unset;

属性值

normal: 默认字体粗细,其值为400。

lighter: 它考虑了字体家族的现有字体粗细,并使字体粗细与父元素相比更轻。

bolder: 它考虑字体家族的现有字体粗细,并使字体粗细与父元素相比更大。

bold:顾名思义,用于定义粗体字体粗细,其数值为700。

number:用于根据指定的数字设置字体粗细。范围是1到1000。

initial:用于将字体粗细设置为其默认值。

让我们看一下此属性的示例。

 
  
 
 
     font-weight property  
  
    
     
 
  
 
    

normal property value

lighter property value

bolder property value

bold property value

number property value

initial property value

inherit property value

unset property value