Hallo,
die Links innerhalb einer bestimmten Klasse sollen sich von anderen Links unterscheiden.
.fuss
{
font-size:10px;
color: #1b4472;
border-top:#cc7b16 dotted thin;
}
Mit folgender CSS Beschreibung versuche ich die Links innerhalb der 'class' fuss anzusprechen.
a.fuss :visited { color: #1b4472; font-size:10px;}
a.fuss :active { color: #d2232a; font-size:10px;}
a.fuss :link { color: #1b4472; text-decoration:none; font-size:10px;}
a.fuss :hover { color: #cc7b16; font-size:10px;}
a.fuss :focus { color: #CCCCCC; font-size:10px;}
Die richtige Syntax solcher Kombinationen bereitet mir immer wieder Schwierigkeiten - welche Grundregeln muss man beachten?
Gruß
Maggie