Ver Mensaje Individual
  #5 (permalink)  
Antiguo 13/10/2007, 04:13
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 2 meses
Puntos: 772
Re: Cambiar color de letra dentro de celda

Hola carceron

Este código te puede servir:

Código PHP:
<html>
<
head>
<
style type="text/css">
#celda1 a {width:100%; display:block}
#celda1 a:hover {
color#F5F5F5
}
</
style>
</
head>
<
body>
<
table>
<
tr>
<
td id="celda1" style="width:200px; background:red">
<
a href='www.google.com'>texto dentro de celda</a>
</
td>
</
tr>
</
table>
</
body>
</
html
Saludos,