gpt4 book ai didi

css - 结合。 SASS 中的(点)和 &(符号)

转载 作者:行者123 更新时间:2023-11-28 09:35:47 25 4
gpt4 key购买 nike

SASS 语法:

.rule{
&-first.&-second{
/*rules*/
}
}

生成错误“无效的 CSS...”

预期输出:

.rule-first.rule-second{
/*rules*/
}

可以吗?怎么办?

最佳答案

您可以使用 @at-root 和插值来做到这一点。您需要使用支持这些功能的 SASS 版本。

.rule {
@at-root #{&}-first#{&}-second{
/*rules*/
}
}

输出到:

.rule-first.rule-second {
/*rules*/
}

演示:http://sassmeister.com/gist/f7f9e25a0896e47e0adc

关于css - 结合。 SASS 中的(点)和 &(符号),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26933295/

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