:any-link
Is :any-link supported?
by David Storey
HTML
<a href="http://someurlivenevervisited.com/">If :any-link is supported, this text MUST be be green</a>
CSS
a:link,
a:visited {
color: red;
}
a:-webkit-any-link {
color: lime;
}
a:-moz-any-link {
color: lime;
}
a:any-link {
color: green;
}