假设我们有:
.a {
/** Some properties here **/
.b {
/* Some properties here **/
}
&:hover {
.b {
/* change b here */
}
}
}
还有一个元素<div class = "b">
,有没有办法防止将悬停属性应用于此div?
我试过了:
.a {
/** Some properties here **/
.b {
/* Some properties here **/
}
.c {
/* empty */
}
&:hover {
.b:not(.c) {
/* change b here */
}
}
}
我还将课程设置为<div class = "b c">
。
任何帮助都会被理解,这个scss文件被其他文件共享,所以我不想太多地改变它。