I have this stuff
<div class="foo">
<input type="text" name="bar" value="" />
<a href="javascript:void(0)">foobar 1</a>
</div>
<div class="foo">
<input type="text" name="bar" value="" />
<a href="javascript:void(0)">foobar 2</a>
</div>
<div class="foo">
<input type="text" name="bar" value="" />
<a href="javascript:void(0)">foobar 3</a>
</div>
<!-- I'm trying with this CSS, but with no luck -->
<style>
.foo a:first-child {
display:none;
}
</style>
How can I only display foobar 2
and foobar 3
links?