:hover
一旦在样式表中声明,是否可以删除或取消 效果?
例如..
我有一个:hover
在样式表中有效果的类。对于此类中的一个元素(并且有很多),我不想有这些悬停效果。
因此,与其通过我想要这样做的每个课程,有没有办法简单地取消:hover
效果?我在想这可能需要一些javascript。
更新一个简短的例子:
.class1 {a bunch of properties that vary based on the class}
.class1:hover {a bunch of properties that vary based on the class}
.class2 {a bunch of properties that vary based on the class}
.class2:hover {a bunch of properties that vary based on the class}
对于其中一个类中的一个元素,我希望它不参与悬停庆祝活动,但仍希望它出现在类中。我不想只为悬停创建新类。这可能吗?