1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
|
/* Für a href-Tags: */
a:hover {
background-color: #aabbcc;
}
/* Für andere Elemente, z.B. divs, eine Klasse definieren: */
div.navi {
background-color: transparent;
}
div.navi:hover {
background-color: #aabbcc;
} |