programko/uloha.css
2024-03-21 10:25:45 +01:00

22 lines
277 B
CSS

a:hover {
background-color: yellow;
}
/* unvisited link */
a:link {
color: green;
}
/* visited link */
a:visited {
color: green;
}
/* mouse over link */
a:hover {
color: red;
}
/* selected link */
a:active {
color: yellow;
}