In CSS (not javascript), how can I hide the first element with a particular class, but not the other elements? See example below:
<div class="wrap">
<center>
<a href="" class="button">hide this one</a>
</center>
<div> Some other stuff</div>
<center>
<a href="" class="button">don't hide this one</a>
</center>
</div>
How would I hide the first element with the class of button?