ich weiß, dass das eigentlich nichts mit Contenido oder so zu tun hat, aber es is eigentlich nur ne ganz einfache Frage.
Ich habe nämlich ein Layout, mit einer Tabelle.
Damit es einfach ist, habe ich das ein bischen gekürzt:
Code: Alles auswählen
<html>
<head>
<STYLE type="text/css">
<!--
.inhalt
{
a { font-color: green;}
a:link { font-color: green;}
a:active { font-color: green;}
a:visited { font-color: green;}
a:hover { font-color: green;}
}
-->
</STYLE>
</head>
<body>
<table>
<tr>
<td class="inhalt">
<p>Hallo</p>
<a href="bla.html">srggf</a>
</td>
</tr>
</table>
</body>
</html>
Was muss ich dazu in die CSS schreiben?