字体速记

Avatar of Chris Coyier
Chris Coyier

语法

body {
  font: font-style font-variant font-weight font-size/line-height font-family;
}

使用中

body {
  font: italic small-caps normal 13px/150% Arial, Helvetica, sans-serif;
}

您需要至少提供 font-sizefont-family 才能使速记有效,否则它将只是一个语法错误,什么也不做。

body {
  font: italic 20px Serif; /* works */
  font: 20px; /* fails */
  font: 18em Fantasy; /* works */
  font: bold small-caps; /* fails */
}

使用速记时,要注意 意外重置