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.

Possible Duplicate:
CSS selector for first element with class

Currently I have a code that looks something like this:

<div class="content">
   <div style="...">...</div>
   <div class="post">...</div>
   <div class="post">...</div>
   <div class="post">...</div>
   <div class="post">...</div>
   <div class="post">...</div>
</div>

How can I target the first "post" class in this example? In other words, what CSS selector do I have to use?

<div class="content">
   <div style="...">...</div>
   <div class="post">...</div> <--- I need a selector to edit the styles for this.
   <div class="post">...</div>
   <div class="post">...</div>
   <div class="post">...</div>
   <div class="post">...</div>
</div>

Any help would be highly appreciated! Thanks!

share|improve this question
Have you tried .post:first-child ? – Vucko Nov 20 '12 at 23:52
Neither .post:first-child nor .post:first-of-type will work. See my answer to the duplicate question. In your case, you need two rules: one for .content .post, and another for .content .post ~ .post to undo the styles for subsequent .post elements. – BoltClock Nov 21 '12 at 4:03

marked as duplicate by BoltClock Nov 21 '12 at 4:02

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

You need the nth-child selector

.post:nth-child(2)
{
//css
}

Fiddle

share|improve this answer
I tried that, and it did not work. – user1676019 Nov 20 '12 at 23:45
Try the edit... – Sidharth Mudgal Nov 20 '12 at 23:53

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