En fin me puse hacerlo y aqui esta el codigo:
Código PHP:
<html>
<head>
<title>probando celdas con link invisible</title>
<style type="text/css">
table{
width:200px;
height:200px;
border:1px solid #000;
}
table tr td a{
width:200px;
height:200px;
}
table tr td a:hover{
background-color:red;
}
</style>
</head>
<body>
<table>
<tr>
<td><a href="#"></a></td>
</tr>
</table>
</body>
</html>