有没有办法在sass中获得祖父母的名字而没有变量吗?

时间:2019-04-01 05:04:03

标签: sass

具有变量

.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类

1 个答案:

答案 0 :(得分:2)

SASS中没有祖父母选择器,但是,如果您不想再次编写.comment选择器,则可以将&符号存储在变量中:

.comment {
    $hah: &;
    &__item {
        &:hover #{$hah}__right > #{$hah}__bottom {
            height: 3rem;
        }
    }
}

这是nice article