gpt4 book ai didi

css - 从小断点内的按钮混合继承样式

转载 作者:行者123 更新时间:2023-11-28 04:00:42 27 4
gpt4 key购买 nike

有没有办法只在小断点设置 $expand 并从上面继承 $background 和 $background-hover?

&__close {
@include button($background: $success-color, $background-hover: auto);

@include breakpoint(small only) {
@include button($background: $success-color, $background-hover: auto, $expand: true);
}
}

最佳答案

button() 参数默认为示例中的某些值是否可能是一种“中间方法”?然后你可以重新排列你的参数的顺序并且只覆盖 $expand 值,如下所示:

// @mixin button()
@mixin button( $expand: false, $background: $success-color, $background-hover: auto ) {
// All the button stuff
}


// Your selector
&__close {
@include button();

@include breakpoint(small only) {
@include button($expand: true);
}
}

关于css - 从小断点内的按钮混合继承样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43226347/

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