26/09/2006, 10:59
|
| | Fecha de Ingreso: septiembre-2006
Mensajes: 15
Antigüedad: 18 años, 2 meses Puntos: 0 | |
Un amigo me ha ayudado: Cita:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style>
#div_b {
visibility: hidden;
background-color:#0000FF;
}
#div_a:hover #div_b { visibility: visible;}
#div_a{
width: 80px;
height: 20px;
background-color:#FF0000;
}
</style>
</head>
<div id="div_a">menu 1
<div id="div_b">opcion 1<br />opción 2</div>
</div>
<body>
</body>
</html> |