Difference between "a" and "a:link"

css, css-selectors

Solution

`a:link` is specifically for links that have not been visited. `a` applies to all `<a>` elements.

Problem

What is the difference between `a` and `a:link`, and when do I use one over the other?

Original source

Related problems