gpt4 book ai didi

sass - 从混入中删除/移除属性

转载 作者:行者123 更新时间:2023-12-01 11:55:44 26 4
gpt4 key购买 nike

以下 .scss 代码:

@mixin div-base {
width: 100px;
color: red;
}

#data {
@include div-base;
}

将产生:

#data {
width: 100px;
color: red; }

我想做这样的事情:

#data {
@include div-base;
remove or delete: width right here
}

生产:

#data {
color: red;
}

是否有可能按照这些思路做一些事情?

最佳答案

最好的方法是使用 arguments在你的 mixin 上:

@mixin div-base($width: 100px, $color: red) {
@if $width != false { width: $width; }
@if $color != false { color: $color; }
}

#data {
@include div-base($color: false);
}

关于sass - 从混入中删除/移除属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7558976/

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