Gjendjet e lidhjeve link dhe visited në CSS
Shpesh gjendjet :link dhe :visited
kombinohen së bashku përmes presjes:
a:link, a:visited {
color: red;
}
a:hover {
text-decoration: none;
}
a:active {
color: blue;
}
<a href="#">link</a>
:
Në këtë rast mund t'i lini pa i specifikuar fare:
a {
color: red;
}
a:hover {
text-decoration: none;
}
a:active {
color: blue;
}
<a href="#">link</a>
: