gpt4 book ai didi

css - 在 SASS 混入中使用椭圆形边界半径

转载 作者:行者123 更新时间:2023-11-28 13:15:40 25 4
gpt4 key购买 nike

//Usage
@include border-radius(150px / 70px);

//Mixin
@mixin border-radius($values) {
-webkit-border-radius: $values;
-moz-border-radius: $values;
border-radius: $values;
}

结果是:

border-radius: the division of 150/70, which is 2.xxxxx-something

如何在同一个 mixin 中解决这个问题?

最佳答案

这里需要使用字符串插值:

.foo {
@include border-radius(#{150px} / 70px);
}

关于css - 在 SASS 混入中使用椭圆形边界半径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17615092/

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