Koala Sass - 为什么autoprefix不起作用?

时间:2015-12-10 07:27:22

标签: css compilation sass koala autoprefixer

我使用Koala App进行Sass编译。

我想为属性CSS3

自动添加前缀

Screenshot my options

SCSS:

$radius: 14px;

.test {
    border-radius: $radius;
}

结果CSS(编译WITH set选项" Autoprefix"):

.test {
  border-radius: 14px;
}

结果CSS(编译WITHOUT set option" Autoprefix"):

.test {
  border-radius: 14px;
}

同样的结果。为什么autoprefix不起作用?

编译后我想得到的内容

.test {
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
}

1 个答案:

答案 0 :(得分:1)

考拉的Autoprefixer只会在需要时添加前缀。显然border-radiusfully supported by all major browsers,并且不需要任何其他前缀。