I\'m trying to apply background-color when a user mouse hover the element whose class name is \"reMode_hover\".
\"reMode_hover\"
But I do not want to change color if th
One way is to use the multiple class selector (no space as that is the descendant selector):
.reMode_hover:not(.reMode_selected):hover { background-color: #f0ac00; }
Design Design