gpt4 book ai didi

SASS 如何使用&符号将类添加到标签?

转载 作者:行者123 更新时间:2023-12-05 02:19:26 26 4
gpt4 key购买 nike

我如何编写这些 sass 声明以便它编译为 a.btn_primary_cancel

我试过了,但没用:

.btn_primary_cancel {

a& {
line-height: 4rem;
}

}

最佳答案

Yes !! You can have the desired result. Just use @at-root

试试这段代码。

.btn_primary_cancel {
@at-root a#{&} {
line-height: 4rem;
}
}

它将编译为

a.btn_primary_cancel {
line-height: 4rem;
}

实际操作 - CODEPEN

关于SASS 如何使用&符号将类添加到标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42915981/

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