禁止值的浏览器引擎前缀。
a { display: -webkit-flex; }
/** ↑
* 这个前缀 */
此规则仅针对标准值的前缀进行指正,而不针对专有或未知值。
true
以下模式被视为违规:
a { display: -webkit-flex; }
a { max-width: -moz-max-content; }
a { background: -webkit-linear-gradient(bottom, #000, #fff); }
以下模式不被视为违规:
a { display: flex; }
a { max-width: max-content; }
a { background: linear-gradient(bottom, #000, #fff); }
ignoreValues: ["string"]
给定:
["grab", "max-content"]
以下模式不被视为违规:
cursor: -webkit-grab;
.foo { max-width: -moz-max-content; }