Is there a CSS selector for the first instance of a child with class? For example, take this code:
<div id="container">
<div class="nothing">
</div>
<div class="child"> <!-- SELECT THIS ONE -->
</div>
<div class="child"> <!-- NOT THIS ONE -->
</div>
<div class="child"> <!-- NOT THIS ONE -->
</div>
</div>
Is there a css selector to style the first occurrence of a div with class "child"?