gpt4 book ai didi

css - 具有特定值的 SASS Mixin 参数

转载 作者:太空宇宙 更新时间:2023-11-04 01:02:10 24 4
gpt4 key购买 nike

有什么方法可以检查 mixins 中的参数。例如,我有一个 shadow mixin,并希望在其参数的情况下以不同的方式包含它(调用它)。

@mixin shadow($shadow, $position, $color) { .....

如果我通过 Top2,它应该只更改第一个参数

.box { @include shadow(inset, Top2, #000); } => `box-shadow: inset, 2px 0 0 0, #000`

如果我传递 Bottom2,它应该将参数更改为 -2px

.box { @include shadow(inset, Bottom2, #000); } => `box-shadow: inset, -2px 0 0 0, #000`

最佳答案

我认为你应该使用这种类型。

    @mixin box-shadow($values) {
-webkit-box-shadow: $values;
-moz-box-shadow: $values;
box-shadow: $values;
}
@mixin box-shadow-inset($inset) {
-webkit-box-shadow: $inset;
-moz-box-shadow: $inset;
box-shadow: $inset;
}

关于css - 具有特定值的 SASS Mixin 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53041964/

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