gpt4 book ai didi

css - 如何将 URL 图像添加为 scss 变量

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

我有以下 scss 样式。我添加了 bg 颜色作为变量,它工作正常。我还需要添加“icons.png”作为变量。

 .home {
@include themify($themes) {
background: url(images/icons.png) themed('bgcolor');
}
}

如何将“icons.png”添加为真实?喜欢

背景:url(images/VARIABLENAME) 主题('bgcolor');

最佳答案

你可以试试这个。

$image: 'icons.png';  
.home {
@include themify($themes) {
background: url(images/${$image}) themed('bgcolor');
}
}

关于css - 如何将 URL 图像添加为 scss 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56168507/

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