property-no-vendor-prefix
禁止属性的供应商前缀。
a { -webkit-transform: scale(1); }
/** ↑
* This prefix */
此规则会忽略未由 Autoprefixer 处理的非标准供应商前缀属性。
该 fix
选项 可以自动修复此规则报告的所有问题。但是,它不会删除删除前缀后产生的重复属性。您可以使用 Autoprefixer 本身,以及 add
选项关闭,remove
选项打开,在这些情况下。
该 message
次要选项 可以接受此规则的参数。
选项
true
以下模式被视为问题
a { -webkit-transform: scale(1); }
a { -moz-columns: 2; }
以下模式不被视为问题
a { transform: scale(1); }
a { columns: 2; }
a { -webkit-touch-callout: none; }
可选的次要选项
ignoreProperties: ["/regex/", /regex/, "string"]
给定
["transform", "columns"]
以下模式不被视为问题
a { -webkit-transform: scale(1); }
a { -moz-columns: 2; }