gpt4 book ai didi

css - 如何在 Sass 中将数字转换为小数

转载 作者:太空宇宙 更新时间:2023-11-03 19:59:15 29 4
gpt4 key购买 nike

想知道如何制作 .在 $value 之外

@mixin opacity($value) {
opacity: .$value;
}

如何转义那个点.?我想要这个:

.foo {
@include opacity(3);
}

生成这个:

.foo {
opacity: .3;
}

最佳答案

正确的做法是使用除法。使用字符串插值只会给你一个字符串,它不适合传递给需要数字的 Sass 函数:

@mixin opacity($value) {
opacity: $value / 10;
}

.foo {
background-color: rgba(5, 5, 5, $value / 10);
}

关于css - 如何在 Sass 中将数字转换为小数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23690182/

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