
19/09/2003, 04:34
|
 | Moderador extraterrestre | | Fecha de Ingreso: diciembre-2001 Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 23 años, 2 meses Puntos: 61 | |
Podría hacerse así: Código PHP: <html>
<head>
<style>
A{width:100%;
height:100%;
text-decoration:none;
color:black;
font:normal 10px/10px verdana;
background:#ffffcc;
padding:10px 10px 10px 10px;
}
A:HOVER{background:#ffff66;
}
TD{border:solid 1px black;
padding:0px 0px 0px 0px;
}
#explicacion{
border:none;
font:normal 10px/10px verdana;
color:navy;
width:200px;
padding-left:200px;
}
</style>
<title>Untitled</title>
<script>
function mostrar(esto){
document.getElementById('explicacion').innerHTML=esto;
}
</script>
</head>
<body>
<table>
<tr>
<td onmouseover="mostrar('aqui verás las fotos');"><A href="fotos">fotos</A></td>
<td rowspan=5 id="explicacion">
</td>
</tr>
<tr>
<td onmouseover="mostrar('Pincha aquí para ver los comentarios');"><A href="comentario.html">comentarios</A></td>
</tr>
<td onmouseover="mostrar('Mándame un mensaje');"><A href="mailto:[email protected]">Correo</A></td>
</tr>
</table>
</body>
</html>
Espero que te sirva, y bienvenido!!
__________________ Cómo escribir
No hay pregunta tonta, sino tonto que quiere seguir en la ignorancia. |