Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/03/2008, 11:43
Avatar de Mikmoro
Mikmoro
Colaborador
 
Fecha de Ingreso: octubre-2006
Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 17 años, 6 meses
Puntos: 280
Re: tabla cambiante de color con mouse encima.

Aquí tienes un truquillo, aunque no sé si te valdrá para lo que quieres.

Cita:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Tablilla</title>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1" />
<style type="text/css">
td { background-color: rgb(255, 0, 0);
margin: 0px;
padding: 0px;
}
a { width: 100%;
height: 100%;
display: block;
}
a:hover { background-color: rgb(0, 0, 0);
cursor: text;
}
</style>
</head>
<body>
<table style="width: 50%;" border="0">
<tbody>
<tr>
<td><a href="#">&nbsp;</a></td>
<td><a href="#">&nbsp;</a></td>
<td><a href="#">&nbsp;</a></td>
</tr>
<tr>
<td><a href="#">&nbsp;</a></td>
<td><a href="#">&nbsp;</a></td>
<td><a href="#">&nbsp;</a></td>
</tr>
<tr>
<td><a href="#">&nbsp;</a></td>
<td><a href="#">&nbsp;</a></td>
<td><a href="#">&nbsp;</a></td>
</tr>
</tbody>
</table>
<br />
</body>
</html>
Mikel.