Grunt SASS 无效 属性 名称外观
Grunt SASS Invalid property name appearance
使用以下SASS代码时
.select select
-webkit-appearance: none
-moz-appearance: none
appearance: none
我在通过 Grunt 编译时得到 "Invalid property name"。问题似乎是“-moz-appearance: none”。
我正在使用 Autoprefixer,但它不支持外观 属性 (https://github.com/postcss/autoprefixer#why-doesnt-autoprefixer-support-appearance)。
编译时让行通过的最佳方法是什么?
相当蹩脚,但这与缩进有关。必须是:
.select select
-webkit-appearance: none
-moz-appearance: none
appearance: none
使用以下SASS代码时
.select select
-webkit-appearance: none
-moz-appearance: none
appearance: none
我在通过 Grunt 编译时得到 "Invalid property name"。问题似乎是“-moz-appearance: none”。
我正在使用 Autoprefixer,但它不支持外观 属性 (https://github.com/postcss/autoprefixer#why-doesnt-autoprefixer-support-appearance)。
编译时让行通过的最佳方法是什么?
相当蹩脚,但这与缩进有关。必须是:
.select select
-webkit-appearance: none
-moz-appearance: none
appearance: none