Link in Tabelle formatieren?

Ich möchte in einer Tabelle einen Link formatieren aber bisher steh ich da total auf der Leitung. Egal wie/was ( div id=... / class= bei td oder beim "a" direkt ) ich probiert hab, der Link ist gleich geblieben.

Könnt ihr mir nen Tipp geben ;)

Hier der Tabellenausschnitt mit der Rumprobiererei
HTML:
	<table align="center" class="texta">
			<tr>
				<td width="200" class="textb"><a href="ueberuns.php">Wir</a></td>

CSS-Versuche
HTML:
td.textb a:link {color:#ff0000; text-decoration:none;}

#texta a:link {color:#ff0000; text-decoration:none;}
#texta a:visited {color:#0000ff; text-decoration:none;}
#texta a:active {color:#000000; text-decoration:none;}
#texta a:hover {color:#000000; text-decoration:underline;}
 
Zurück
Oben