如果我有一个其他人拥有代码的蓝色 div
.stuff {
background-color: blue;
}
我希望它在悬停时是红色的
.stuff:hover {
background-color: red;
}
但后来我希望能够添加一个类,让它回到它的非伪类状态:
.stuff.otherclass:hover {
background-color: unset; /* Want blue in this case */
}
是否有返回到伪类前状态的 CSS 选项?
Codepen 演示: http ://codepen.io/anon/pen/EyEWww