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.

Can someone shed some light on what the difference is between these two types of CSS declarations:

ul#test {
}

#test ul {
}

I have looked and cant seem to find the difference, but they act differently when I use them on a test page. As far as I can tell they do the same thing, which is to associate the #test ID only with a UL tag that it is assigned to. In actual use, though, when I use ul#test in my style sheet, the formatting works properly. On the other hand, if I use #test ul it does not.

You can see what I am referring to here:

http://jsbin.com/awixib/2/edit#source

Does the ul#test method mean that the ID is assigned specifically to a UL tag and the #test ul means that the UL is within another tag that is assigned the ID?

share|improve this question

1 Answer

up vote 6 down vote accepted
ul#test {
}

This one is applied to the ul whose id is test

#test ul {
}

this one applies to ul whose ancestor is an element with an id test

share|improve this answer
Thank you! That clears it up for me. – John Tangale Apr 15 '12 at 15:22

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.