单位允许列表
指定允许的单位列表。
a { width: 100px; }
/** ↑
* These units */
该 message
次要选项 可以接受此规则的参数。
选项
array|string
: ["array", "of", "units"]|"unit"
给定
["px", "em", "deg"]
以下模式被认为是问题
a { width: 100%; }
a { font-size: 10rem; }
a { animation: animation-name 5s ease; }
以下模式不被认为是问题
a { font-size: 1.2em; }
a { line-height: 1.2; }
a { height: 100px; }
a { height: 100PX; }
a { transform: rotate(30deg); }
可选的次要选项
ignoreProperties: { "unit": ["property", "/regex/", /regex/]|"property"|"/regex/"|/regex/ }
忽略具有指定属性的声明值的单位。
例如,使用 ["px", "em"]
。
给定
{
"rem": ["line-height", "/^border/"],
"%": ["width"]
}
以下模式不被认为是问题
a { line-height: 0.1rem; }
a { border-bottom-width: 6rem; }
a { width: 100%; }
以下模式被认为是问题
a { margin: 0 20rem; }
a { -moz-border-radius-topright: 20rem; }
a { height: 100%; }
ignoreFunctions: ["function", "/regex/", /regex/]|"function"|"/regex/"|/regex/
忽略指定函数内部的单位。
例如,使用 ["px", "em"]
。
给定
["/^hsl/", "calc"]
以下模式不被认为是问题
a {
border: 1px solid hsl(162deg, 51%, 35%, 0.8);
}
a {
background-image: linear-gradient(hsla(162deg, 51%, 35%, 0.8), hsla(62deg, 51%, 35%, 0.8));
}
a {
width: calc(100% - 10px);
}