CSS: a:link vs just a (without the :link part)

Posted by Rob on Stack Overflow See other posts from Stack Overflow or by Rob
Published on 2010-04-14T14:33:59Z Indexed on 2010/04/14 14:43 UTC
Read the original article Hit count: 145

Filed under:
|
|

So we're required to use the following order for CSS anchor pseudo-classes

a:link    { color: red }    
a:visited { color: blue }  
a:hover   { color: yellow } 
a:active  { color: lime }  

But my question is why bother with the a:link part? Rather, is there any advantage to the above (other than perhaps clarity) over:

a { color:red; } /* notice no :link part */
a:visited { color: blue; }
etc.,etc.

© Stack Overflow or respective owner

Related posts about pseudo-class

Related posts about css