I'm looking to make a selector which will select all elements if they have a specific child element. For example, select all div with a child span.
Possible?
|
I'm looking to make a selector which will select all elements if they have a specific child element. For example, select all div with a child span. Possible? |
|||
|
|
Unfortunately no. Edit to elaborate: These are the available CSS2 selectors: http://www.w3.org/TR/CSS2/selector.html These are the available CSS3 selectors: http://www.w3.org/TR/2005/WD-css3-selectors-20051215/#selectors |
|||
|
|
|
I agree that it is not possible in general. The only thing CSS3 can do (which helped in my case) is to select elements that have no children:
Or have any children (including text):
|
|||
|
|
|
For completeness, I wanted to point out that in the Selectors 4 specification (currently in proposal), this will become possible. Specifically, we will gain Subject Selectors, which will be used in the following format:
The |
|||
|
|