一直记不住这个,今天写下来!

font : font-style || font-variant || font-weight || font-size || line-height || font-family 

可以按顺序设置如下属性:

  • font-style (使用斜体、倾斜或正常字体)
  • font-variant (设置小型大写字母的字体显示文本)
  • font-weight (设置文本的粗细)
  • font-size/line-height (设置字体的尺寸和行高)
  • font-family (规定元素的字体系列)

可以不设置其中的某个值,比如 font:100% verdana; 也是允许的。未设置的属性会使用其默认值。

如:

body{ font: italic small-caps bold 14px/24px "microsoft yahei";}

字体:斜体 小型大写字母 粗体 14号大小/24像素行高 微软雅黑

可以不需要每个都写,但是顺序还是要的




相关文章:

  • 2021-06-11
  • 2021-06-22
  • 2022-12-23
  • 2022-02-14
  • 2021-05-04
  • 2022-12-23
猜你喜欢
  • 2022-01-15
  • 2022-12-23
  • 2022-12-23
  • 2021-07-04
  • 2022-12-23
  • 2022-01-24
  • 2022-01-28
相关资源
相似解决方案