Gunther: Formatierung von a {...} und a:link {...}

Beitrag lesen

Hi,

Fehler gefunden!!!1

a {color: orange;}
a:link {color: blue;}
a:visited {color: purple;}
a:hover {color: red;}
a:hover {color: green;}
a:active {color: yellow;}


>   
> Da fehlt :focus, dafür ist :hover doppelt.  
  
Arghh, schei ... Copy & Paste wenn man nicht aufpasst.  
Also richtig sollte es natürlich heißen:  
~~~css
  
a {color: orange;}  
a:link {color: blue;}  
a:visited {color: purple;}  
a:hover {color: red;}  
a:focus{color: green;}  
a:active {color: yellow;}

Immerhin im Text war es richtig, sodass der aufmerksame Leser ...!
Danke für den Hinweis.

Gruß Gunther