css link color styles best practice

Viewed 49766

There are many css-samples for styling color of links.

html5boilerplate.com offers such css code for link:

a { color: #00e; }
a:visited { color: #551a8b; }
a:hover { color: #06e; }​

Is it good enough for most cases?

Or maybe better css-code exist for styling color of links?

5 Answers
Related