I think crono_logical's example will let you do things like
Code:
<div class="Mint">
<a href="blah">Hi</a>
<a href="blah">Link</a>
<a href="blah">Another</a>
</div>
So you can specify the class of the div (or span, if you want, or whatever is the parent of the a-tags), and all a-tag children of the div will use that style. The way Baloki put it, you'd have to put the class on the a-tags themselves, like
Code:
<a href="blah" class="mint">Hi</a>
<a href="blah" class="mint">Link</a>
<a href="blah" class="mint">Another</a>
which is rather more typing, and harder to change later, but still a valid way to do things. I'd probably go with the first example, myself.