具有变量
.comment {
$hah: ".comment";
&__item {
&:hover #{$hah}__right > #{$hah}__bottom {
height: 3rem;
}
}
}
我可以获取不带变量的祖父母姓名吗?
.comment { this this
&__item { vv vv
&:hover .comment__right > .comment__bottom {
height: 3rem;
}
}
}
所以我不必在其中再次编写.comment类
答案 0 :(得分:2)
SASS中没有祖父母选择器,但是,如果您不想再次编写.comment
选择器,则可以将&符号存储在变量中:
.comment {
$hah: &;
&__item {
&:hover #{$hah}__right > #{$hah}__bottom {
height: 3rem;
}
}
}
这是nice article。