CSS selector for the last occurrence of a class on a page
- by snaken
Is there a CSS selector for the last occurrence of a class on a page?
Say i have this HTML
<dd>
<span>
<a class="required" id="forename">foo</a>
</span>
</dd>
<dd>
<span>
<a class="required" id="surname">bar</a>
</span>
</dd>
Is there a CSS selector that would return the a tag with the ID of surname. Something like .required:last maybe?
Will be using Prototype if that matters?