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!