1

使用以下 SASS 代码时

.select select
    -webkit-appearance: none
       -moz-appearance: none
            appearance: none

通过 Grunt 编译时,我得到一个“无效的属性名称”。问题似乎与“-moz-appearance:none”有关。

我正在使用 Autoprefixer,但它不支持外观属性(https://github.com/postcss/autoprefixer#why-doesnt-autoprefixer-support-appearance)。

编译时让行通过的最佳方法是什么?

4

1 回答 1

4

很蹩脚,但它与缩进有关。必须是:

.select select
    -webkit-appearance: none
    -moz-appearance: none
    appearance: none
于 2015-05-22T13:25:27.827 回答