Hi,
danke für den Tipp mit den ID´s und class. Damit habe ich den CSS Text etwas geändert. Aber habe nun das Problem, wie ich in ein ID mehrere Eigenschaften definiere (Link, besuchter Link, Hover, ...). Alles schön mit Semikolon und Klammersetzung, aber seht selbst.
Hier mein "Versuch":
Im Quelltext: <a id="link" href="testlink.html">Testlink</a>
#link {
link { font-weight:normal; color:red; border-bottom:dashed 1px blue; text-decoration:none;};
visited { font-weight:normal; color:red; border-bottom:dashed 1px blue; text-decoration:none;};
focus { font-weight:normal; color:#74c44d; border-bottom:dashed 1px blue; text-decoration:none;};
hover { font-weight:normal; color:#74c44d; border-bottom:dashed 1px blue; text-decoration:none;};
active { font-weight:normal; color:#74c44d; border-bottom:dashed 1px blue; text-decoration:none;}
}
Was habe ich da falsch gemacht?
Gruß
Thomas