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!
.post:first-childnor.post:first-of-typewill work. See my answer to the duplicate question. In your case, you need two rules: one for.content .post, and another for.content .post ~ .postto undo the styles for subsequent.postelements. – BoltClock♦ Nov 21 '12 at 4:03