Koala Sass - 为什么自动前缀不起作用?
Koala Sass - Why autoprefix not work?
我使用 Koala App 进行 Sass 编译。
我想为属性自动添加前缀CSS3
SCSS:
$radius: 14px;
.test {
border-radius: $radius;
}
结果CSS(使用设置选项编译"Autoprefix"):
.test {
border-radius: 14px;
}
结果CSS(编译时不设置选项"Autoprefix"):
.test {
border-radius: 14px;
}
同样的结果。为什么自动前缀不起作用?
这就是我想编译后得到的
.test {
-webkit-border-radius: 14px;
-moz-border-radius: 14px;
border-radius: 14px;
}
Koala 的 Autoprefixer 只会在需要时添加前缀。显然 border-radius
是 fully supported by all major browsers 并且不需要任何额外的前缀。
我使用 Koala App 进行 Sass 编译。
我想为属性自动添加前缀CSS3
SCSS:
$radius: 14px;
.test {
border-radius: $radius;
}
结果CSS(使用设置选项编译"Autoprefix"):
.test {
border-radius: 14px;
}
结果CSS(编译时不设置选项"Autoprefix"):
.test {
border-radius: 14px;
}
同样的结果。为什么自动前缀不起作用?
这就是我想编译后得到的
.test {
-webkit-border-radius: 14px;
-moz-border-radius: 14px;
border-radius: 14px;
}
Koala 的 Autoprefixer 只会在需要时添加前缀。显然 border-radius
是 fully supported by all major browsers 并且不需要任何额外的前缀。