Accesskeys die per mouseover angezeigt werden

Dieses Beispiel zeigt, wie man Accesskeys per mouseover im Link
auf sehr einfache Weise browserübergreifend darstellen kann.

[0] Accesskeys
[1] Intensivstation (HOME)
[2] Navigation
[3] Inhalt
[9] Kontakt

XHTML

<a href="http://intensivstation.ch/"><strong>[1]</strong> Intensivstation (HOME)</a>

CSS

a { color: #DB7093; text-decoration: none;}
a:visited {color:#DB7093;}
a:hover {color: #564b47;}
a:active { color:#000000; text-decoration: line-through;}

a strong { visibility: hidden;}
a:hover strong {color: #000000;visibility: visible;}

«== zurück