Ver Mensaje Individual
  #3 (permalink)  
Antiguo 15/05/2007, 15:31
Avatar de asinox
asinox
 
Fecha de Ingreso: enero-2002
Ubicación: Santo Domingo
Mensajes: 2.712
Antigüedad: 22 años, 3 meses
Puntos: 6
Re: Imagen de fondo en enlace

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