只是关于 SASS 选择器嵌套的问题,所以我在一个嵌套跨度内,我想将:hover
伪应用到以便不透明度更改为 0,尽管当父标签获取 class 时,我也想使用这种样式is-active
。现在,我会将is-active
类移到跨度之外并重新应用样式,但我想知道您能否像遍历一样从嵌套样式中提升一个级别?
我的示例 SASS:
.btn-lang {
// styles...
> span {
// styles...
&:hover { // i want to use this when btn-lang has class is-active
opacity: 0;
}
}
// right now I would add these styles here but seems there could be an easier method?
&.is-active {
> span {
&:hover {
opacity: 0;
}
}
}
}