gpt4 book ai didi

css - Koala Sass - 为什么 autoprefixer 不起作用?

转载 作者:太空宇宙 更新时间:2023-11-04 11:02:37 28 4
gpt4 key购买 nike

我使用 Koala App 进行 Sass 编译。

我想为属性 CSS3 自动添加前缀

Screenshot my options

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-radiusfully supported by all major browsers并且不需要任何额外的前缀。

关于css - Koala Sass - 为什么 autoprefixer 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34195992/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com