Axel Richter: Menü

Beitrag lesen

Hallo,

a  { text-decoration: none; font-family: Verdana; font-size: 7pt color: #475B69; }

hier fehlt ein Semikolon nach 7pt;

a  {text-decoration:none; font-family:Verdana; font-size:7pt; color: #475B69; }
a:link  { text-decoration: none; font-family: Verdana; font-size: 7pt color: #475B69; }

hier auch

a:visited { text-decoration: none; font-family: Verdana; font-size: 7pt color: #475B69; }

hier auch

a:active { text-decoration: none; font-family: Verdana; font-size: 7pt color: #BAC9CD; }

hier auch

a:hover  { text-decoration: underline; font-family: Verdana; font-size: 7pt color: #BAC9CD; }

hier auch

Die Reihenfolge der Pseudoformate stimmt nicht. Richtig ist:
:link, :visited, :hover, :active, :focus

http://selfhtml.teamone.de/css/eigenschaften/pseudoformate.htm#link_visited_hover_active_focus

viele Grüße

Axel