Font for specific CSS

When I coded all links in my Blogger blog to be a specific color/size/font, it worked, but now all my links come up with that font, even if I have coded it (say, the link for a particular div), to have a different font.

Does anyone know how I can make one set of css override the other so that all my links except certain ones will be a particular font?

Help would be much appreciated.

You would need to target the links in the parent <element> as there is no way you can have the font family be inherited and set specifically for 2 different locations from within the same selector.

Thanks!