Link darstellung an Klasse koppeln

Dolphon

Erfahrenes Mitglied
Hallo,

ich verzweifle gerade daran die Link Darstellung nur in eine bestimmten Klassen anderes aussehen zu lassen. Wie kann ich die Links der Klasse contentframe zuordnen?

CSS:
.contentframe {
    background: none repeat scroll 0 0 transparent;
    border: 0 none;
    float: left;
    height: auto;
    margin: 0;
    padding: 0;
    width: 1150px;/*776*/
}

a:link { text-decoration:underline; color:#e00000; }
a:visited { text-decoration:underline; color:#e00000; }
a:hover { text-decoration:underline; color:#00e000; }
a:active { text-decoration:underline; background-color:#cff; }
a:focus { text-decoration:underline; background-color:#080; }
 
Hi,

indem du den Klassenamen vor die Linkdefinitionen schreibst.
Code:
.contentframe a:link { text-decoration:underline; color:#e00000; }
.contentframe a:visited { text-decoration:underline; color:#e00000; }
.contentframe a:hover { text-decoration:underline; color:#00e000; }
.contentframe a:active { text-decoration:underline; background-color:#cff; }
.contentframe a:focus { text-decoration:underline; background-color:#080; }
Ciao
Quaese
 
Zurück