Tilstandene link og visited for lenker i CSS
Ofte blir tilstandene :link og :visited
kombinert sammen med komma:
a:link, a:visited {
color: red;
}
a:hover {
text-decoration: none;
}
a:active {
color: blue;
}
<a href="#">link</a>
:
I så fall kan man helt utelate dem:
a {
color: red;
}
a:hover {
text-decoration: none;
}
a:active {
color: blue;
}
<a href="#">link</a>
: