gtxyzz

CSS字体属性

gtxyzz web技术 2022-07-05 854浏览 0

字体属性

为了缩短代码,也可以在一个属性中指定所有单个字体属性。

font 属性是以下属性的简写属性:

  • font-style

  • font-variant

  • font-weight

  • font-size/line-height

  • font-family

实例

使用简写声明设置一些字体属性:

p.a {
  font: 20px Arial, sans-serif;
}
p.b {
  font: italic small-caps bold 12px/30px Georgia, serif;
}

This is a paragraph. The font size is set to 20 pixels, and the font family is Arial.

This is a paragraph. The font is set to italic and bold, the font size is set to 12 pixels, the line height is set to 30 pixels, and the font family is Georgia.


属性描述
font简写属性。在一条声明中设置所有字体属性。
font-family规定文本的字体系列(字体族)。
font-size规定文本的字体大小。
font-style规定文本的字体样式。
font-variant规定是否以小型大写字母的字体显示文本。
font-weight规定字体的粗细。


转载请注明:IT运维空间 » web技术 » CSS字体属性

继续浏览有关 css 的文章
发表评论