¿Perdón PascalC ... q se consigue con un width y height al 100%?
Mirad, con este código como ejemplo
Código:
<html>
<head>
<title>Untitled</title>
<style type="text/css">
.celda{padding: 15px 15px 15px 15px;}
.celda a {display:block; background-color:green;}
.celda a:hover {background-color:red;}
</style>
</head>
<body>
<table cellspacing="0" cellpadding="0" border="1">
<tr>
<td>celda 1</td>
<td class="celda"><a href="sss">celda 2</a></td>
</tr>
<tr>
<td>celda 3</td>
<td>celda 4</td>
</tr>
</table>
</body>
</html>
solo se consigue q sea el link el q cambie de color, y lo q pretendo es q sea la celda la q cambie. Añadiendo width y height al 100% como sugiere PascalC tampoco se consigue.
Salu2