In CSS (any version), is there something like, or any other way of doing anything like the :has() selector in jQuery?
jQuery(':has(selector)')Description: Selects elements which contain at least one element that matches the specified selector.
|
In CSS (any version), is there something like, or any other way of doing anything like the
|
||||
|
No, there isn't. The way CSS is designed, does not permit selectors that match ancestors or preceding siblings; only descendants ( If you need to apply styles to the element you're querying with |
|||||
|
|
No. The best way to accomplish this is by using jQuery: Css File:
Js File:
where |
|||||
|
:has()is a conditional pseudo-class, similar to:not(). The elements matched are the selectors around the pseudo-class, not in the brackets. – BoltClock♦ Jun 8 '11 at 12:53