Is there a way, in CSS, to select a div inside another that contains a specific child like this:

I know it can be done using jQuery, but i'm looking for a way to do it ONLY using CSS.
|
Is there a way, in CSS, to select a div inside another that contains a specific child like this:
I know it can be done using jQuery, but i'm looking for a way to do it ONLY using CSS. |
||||
| show 1 more comment |
|
This is not possible with plain CSS You can only make rules where the selectors are parents, whereas your anchor is not a parent of This can be done using jQuery however. Heres an example: |
|||
|
:contains()is for textual content, you're probably thinking of jQuery's:has(). – BoltClock♦ Apr 16 '12 at 16:59