跳至主要内容

unit-disallowed-list

指定一个不允许使用的单位列表。

a { width: 100px; }
/** ↑
* These units */

该规则的 message 次要选项 可以接受此规则的参数。

选项

array|string: ["array", "of", "units"]|"unit"

给定

["px", "em", "deg"]

以下模式被认为是问题

a { width: 100px; }
a { font-size: 10em; }
a { transform: rotate(30deg); }

以下模式不被认为是问题

a { font-size: 1.2rem; }
a { line-height: 1.2; }
a { height: 100vmin; }
a { animation: animation-name 5s ease; }

可选的次要选项

ignoreProperties: { "unit": ["property", "/regex/", /regex/]|"property"|"/regex/"|/regex/ }

忽略具有指定属性的声明值的单位。

例如,使用 ["px", "vmin"]

给定

{
"px": ["font-size", "/^border/"],
"vmin": "width"
}

以下模式不被认为是问题

a { font-size: 13px; }
a { border-bottom-width: 6px; }
a { width: 100vmin; }

以下模式被认为是问题

a { line-height: 12px; }
a { -moz-border-radius-topright: 40px; }
a { height: 100vmin; }

ignoreMediaFeatureNames: { "unit": ["property", "/regex/", /regex/]|"property"|"/regex/"|/regex/ }

忽略特定特征名称的单位。

例如,使用 ["px", "dpi"]

给定

{
"px": ["min-width", "/height$/"],
"dpi": "resolution"
}

以下模式不被认为是问题

@media (min-width: 960px) {}
@media (max-height: 280px) {}
@media not (resolution: 300dpi) {}

以下模式被认为是问题

@media screen and (max-device-width: 500px) {}
@media all and (min-width: 500px) and (max-width: 200px) {}
@media print and (max-resolution: 100dpi) {}

ignoreFunctions: ["function", "/regex/", /regex/]|"function"|"/regex/"|/regex/

忽略指定函数内的单位。

例如,使用 ["px"]

给定

["calc", "/^translate/"]

以下模式不被认为是问题

a { margin: calc(50% - 100px) }
a { transform: translateX(100px) }