跳至主要内容

font-family-no-missing-generic-family-keyword

禁止字体系列中缺少通用字体系列关键字。

a { font-family: Arial, sans-serif; }
/** ↑
* An example of generic family name */

通用字体系列可以

  • 放置在字体系列列表中的任何位置
  • 如果使用与属性继承或系统字体相关的关键字,则可以省略

此规则检查 fontfont-family 属性。

选项

true

以下模式被视为问题

a { font-family: Helvetica, Arial, Verdana, Tahoma; }
a { font: 1em/1.3 Times; }

以下模式不被视为问题

a { font-family: Helvetica, Arial, Verdana, Tahoma, sans-serif; }
a { font: 1em/1.3 Times, serif, Apple Color Emoji; }
a { font: inherit; }
a { font: caption; }
a { font-family: var(--font-family-common); }
a { font-family: Helvetica, var(--font-family-common); }

可选的辅助选项

ignoreFontFamilies: ["/regex/", /regex/, "string"]

鉴于

["custom-font"]

以下模式不被视为问题

a { font-family: custom-font; }

以下模式被视为问题

a { font-family: invalid-custom-font; }