我有以下scss代码,我试图整理。
$colors-2: #222;
$colors-1: #ff0;
.footer__region {
text-align: center;
&--country {
color: $colors-2;
cursor: pointer;
display: inline-block;
.heading-3 {
border-bottom: 2px solid transparent;
.active & {
border-bottom-color: $colors-1;
color: $colors-1;
}
}
}
}
我以为我可以将.active嵌入其中并添加&之后输出以下内容
.footer__region--country.active .heading-3 {
border-bottom-color: #ff0;
color: #ff0;
}
但这似乎并非如此。有没有人知道有任何Sass方法可以做到这一点?
注意:.footer__region--country
将是附加.active
的项目,.heading-3
将是孩子。
答案 0 :(得分:1)
幸运的是,对于您的示例,您可以使用@at-root
指令以及.a.b{}
选择与.b.a{}
相同的事实。这样您就不必重复任何类名。
$colors-2: #222;
$colors-1: #ff0;
.footer__region {
text-align: center;
&--country {
color: $colors-2;
cursor: pointer;
display: inline-block;
.heading-3 {
border-bottom: 2px solid transparent;
@at-root .active#{&} {
border-bottom-color: $colors-1;
color: $colors-1;
}
}
}
}
输出:
.footer__region {
text-align: center;
}
.footer__region--country {
color: #222;
cursor: pointer;
display: inline-block;
}
.footer__region--country .heading-3 {
border-bottom: 2px solid transparent;
}
.active.footer__region--country .heading-3 {
border-bottom-color: #ff0;
color: #ff0;
}