I\'m trying to make a CSS selector that matches all links except the hovered one.
Naturally I though of using the ~
operator to catch around elements:
You cant do what you are explicitly after, without using JavaScript due to the way CSS selectors work based on DOM hierarchy and their limited potential for traversal.
However, given what I imagine you are trying to achieve, why not apply the hover to the parent element and exclude the currently hovered a
?
(and an alternative)
div:hover a:not(:hover){
color:red;
}