was "das"?
Das hier:
Also, dass der erste Link rot ist und der zweite weiß. (Das hover ist unwichtig)
<html>
<head>
<style type="text/css">
<!--
body { background-color: #000000; }
a:link, a:active, a:visited { color : white; text-decoration: none}
a:hover { color : white; text-decoration: underline; }
.test a, .test a:link, .test a:active, .test a:visited {color:red; text-decoration:none; }
.test a:hover {color:red; text-decoration:underline; }
-->
</style>
</head>
<body>
<span class="test"><a href="test.htm">geänderter Link (rot)</a></span>
<br><br>
<a href="test.htm">normaler Link (weiß)</a>
<br><br>
</body>
</html>