Andy: Verschiedene CSS

Beitrag lesen

Hi Roland,

soweit bin ich auch schon gekommen.

Also, ich habe folgendes CSS:

<STYLE type="text/css">
.inhalt {
A:link{color:#FFFF00; font-weight:normal; text-decoration:none; background:none}

A:active{color:#E90000; font-weight:normal; text-decoration:underline; background:none}

A:visited{color:#FFE900; font-weight:normal; text-decoration:none; background:none}

A:hover{color:#A6CAF0; font-weight:normal; text-decoration:none; background:none}}

.seite {
A:link{color:#FFFFFF; font-weight:normal; text-decoration:none; background:none}

A:active{color:#9900; font-weight:normal; text-decoration:underline; background:none}

A:visited{color:#EEEEEE; font-weight:normal; text-decoration:none; background:none}

A:hover{color:#AAAAAA; font-weight:normal; text-decoration:none; background:none}}
</STYLE>

Momentan rufe ich es so auf:
<p class="inhalt"><a href="EINLINK" target="_blank">LINKNAME</p>

Was ist da falsch?
Habe ich mich irgendwie vertippt, oder ist schon das Konzept falsch?

Andy