跳至主要内容

declaration-property-value-disallowed-list

在声明中指定不允许的属性和值对列表。

a { text-transform: uppercase; }
/** ↑ ↑
* These properties and these values */

message辅助选项可以接受此规则的参数。

选项

object: { "unprefixed-property-name": ["array", "of", "values", "/regex/", /regex/]|"value"|"/regex/"|/regex/ }

如果属性名称用"/"包围(例如"/^animation/"),则将其解释为正则表达式。这允许,例如,轻松地定位简写:/^animation/将匹配animationanimation-durationanimation-timing-function等。

值也是如此。请记住,正则表达式值与声明的整个值匹配,而不是其特定部分。例如,像"10px solid rgba( 255 , 0 , 0 , 0.5 )"这样的值不会匹配"/^solid/"(注意行边界开头),但匹配"/\\s+solid\\s+/""/\\bsolid\\b/"

小心使用正则表达式匹配,不要意外地考虑引用的字符串值和url()参数。例如,"/red/"将匹配诸如"1px dotted red"之类的值,以及"\"foo\"""white url(/mysite.com/red.png)"

给定

{
"transform": ["/scale3d/", "/rotate3d/", "/translate3d/"],
"position": "fixed",
"color": ["/^green/"],
"/^animation/": ["/ease/"]
}

以下模式被认为是问题

a { position: fixed; }
a { transform: scale3d(1, 2, 3); }
a { -webkit-transform: scale3d(1, 2, 3); }
a { color: green; }
a { animation: foo 2s ease-in-out; }
a { animation-timing-function: ease-in-out; }
a { -webkit-animation-timing-function: ease-in-out; }

以下模式不被认为是问题

a { position: relative; }
a { transform: scale(2); }
a { -webkit-transform: scale(2); }
a { color: lightgreen; }
a { animation: foo 2s linear; }
a { animation-timing-function: linear; }
a { -webkit-animation-timing-function: linear; }