/* Standard-Link (noch nicht besucht) */ a:link { color: #f56487; text-decoration: none; } /* Bereits besuchter Link */ a:visited { color: purple; } /* Hover-Effekt */ a:hover { color: red; text-decoration: underline; } /* Während des Klicks */ a:active { color: orange; } /* Tastaturfokus (Tab) */ a:focus { outline: 2px solid violet; }