微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何结合 :hover 和 :not()?

如何解决如何结合 :hover 和 :not()?

我正在尝试为没有“is-current”类的元素创建悬停效果,但不知何故,以下 SCSS 无法按预期工作:

.class {
    &:not(.is-current):hover {
      color: #fff;
    }
    &.is-current {
      color: #000;
    }
}

我不明白为什么生成的 css 是这样的:

class::active,class::focus,class::hover {
    background: #fff;
}

我已经尝试过 &:not(".is-current") 但结果是一样的。

有人知道如何实现这一目标吗?

提前致谢!

解决方法

以下对我来说很正常,

.some {
    &.is-current { color: blue }
    &:not(.is-current):hover { color: red }
}

输出是

.some.is-current {
    color: blue;
}

.some:not(.is-current):hover {
    color: red;
}

就像您期望的那样,效果很好:

.some.is-current { color: blue }
.some:not(.is-current):hover { color: red }
<span class="some">One</span> · <span class="some is-current">One</span>

也许您的问题另有原因。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。