Links

Status
Nicht offen für weitere Antworten.

erzwo

Mitglied
ich habe ein problem:

ich habe auf einer seite mehrere links. ich weiss wie ich allen links ein ausehen gebe.
PHP:
<style type="text/css">
<!--
a:link { color:#FFFFFF;text-decoration:none; }
a:hover { color:#c0c0c0;text-decoration:none; }
a:active {color:#FFFFFF;text_decoration:none;}
a:visited { text-decoration:none;}
aber wie kann ich jeden links einzeln ein bearbeiten??? :)
 
beispielsweise so:
Code:
<style type="text/css">
<!--
.klasse1 { font-family: courier; color: #0000FF; text-decoration: underline; }
.klasse2 { font-family: Verdana, Helvetica; color: #FF0000; text-decoration: none; }
-->
</style>

<!-- ..... -->

<a href="..." class="klasse1">erster link</a> <br>
<a href="..." class="klasse2">zweiter link</a> <br>
 
Status
Nicht offen für weitere Antworten.
Zurück