Buff: Css Klasse mit Hover versehen ?

Beitrag lesen

Wenn ich dich richtig verstanden habe, dann kopiere ich -->

a:link {
 text-decoration:none;
}
a:visited {
 text-decoration:none;
}
a:active {
 text-decoration:none;
}
a:hover {
 text-decoration: underline;
}

in meine css klasse , -->

.posi_home {
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 11px;
 padding-left:27px;
 padding-top:7px;
a:link {
 text-decoration:none;
}
a:visited {
 text-decoration:none;
}
a:active {
 text-decoration:none;
}
a:hover {
 text-decoration: underline;

}

Arbeite mit Dreamweaver und hatte in der richtung schon was versucht, er hat die Links trotzdem nur blau eingefärbt. Wie kann das im übringen Zusammenfassen ??

Vielen Dank

Buff