Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Given Jeff's recent comments on dupes I'm not voting to close as a duplicate, however it's worth pointing out that there are quite a few other questions here on SO that discuss the much-desired parent-selectors. – David Thomas Nov 18 '10 at 22:42

3 Answers

up vote 7 down vote accepted

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

share|improve this answer

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:

table td:empty
{
   background-color: white;
}

Or have any children (including text):

table td:not(:empty)
{
   background-color: white;
}
share|improve this answer

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:

!div > span { /* style here */

The ! before the div selector indicates that it is the element to be styled, rather than the span. Unfortunately, no modern browsers (as of the time of this posting) have implemented this as part of their CSS support. There is, however, support via a JavaScript library called Sel, if you want to go down the path of exploration further.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.