We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/good/示例中,大小写并未统一。
原文: [强制] font-family 不区分大小写,但在同一个项目中,同样的 Family Name 大小写必须统一。 示例:
/* good */ body { font-family: Arial, sans-serif; }
h1 { font-family: Arial, "Microsoft YaHei", sans-serif; }
/* bad */ body { font-family: arial, sans-serif; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
/good/示例中,大小写并未统一。
原文:
[强制] font-family 不区分大小写,但在同一个项目中,同样的 Family Name 大小写必须统一。
示例:
/* good */
body {
font-family: Arial, sans-serif;
}
h1 {
font-family: Arial, "Microsoft YaHei", sans-serif;
}
/* bad */
body {
font-family: arial, sans-serif;
}
h1 {
font-family: Arial, "Microsoft YaHei", sans-serif;
}
The text was updated successfully, but these errors were encountered: