Hallo
wie bekomme ich für jeden Textlink eine andere Farbe hin?
a:link { color: #FF00FF; text-decoration: none}
a:visited { color: #00FFFF; text-decoration: none}
a:hover { color: #FF0000; text-decoration: none}
zeigt alle Links gleich. ich möchte jedoch jeden Lin in einer anderen Farbe haben.
So würde das ganze in der html Seite aussehen:
<p><span class="1"><a href="http://www.domain-1.de">Link 1</a></span></p>
<p><span class="2"><a href="http://www.domain-1.de">Link 2</a></span></p>
<p><span class="3"><a href="http://www.domain-1.de">Link 3</a></span></p>
<p><span class="4"><a href="http://www.domain-1.de">Link 4</a></span></p>