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.

In CSS I can say div > div to get the div right after a div. And i can say div * to get all elements after div. But is there a way to get any element / tag directly after the given element? Something like div > *. This dosnt work, but anything a long thous lines?

If you dont understand heres another example.

Code 1

<div>
  <ul>
    <li></li>
  </ul>
</div>

Code 2

<div>
  <dl>
    <dd></dd>
  </dl>
</div>

I want a single CSS selector that will be able to get the tag right after the div (ul,dl).

share|improve this question
"after" is the wrong word here. – BoltClock Aug 15 '11 at 20:15

2 Answers

up vote 6 down vote accepted
div > *:first-child 

Try it on jsFiddle.

share|improve this answer
Im not sure why i didnt think of that. Thanks – cnotethegr8 Aug 15 '11 at 20:16
Not sure why :first-child would be necessary here besides for specificity... – BoltClock Aug 15 '11 at 20:17
@BoltClock - It seems your right... I have no clue what just happened. The page must have not been loading properly. With :first-child removed, it still works. Thanks – cnotethegr8 Aug 15 '11 at 20:22

do you mean something like div > :first-child

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.