Ver Mensaje Individual
  #3 (permalink)  
Antiguo 26/09/2006, 10:59
Clandes
 
Fecha de Ingreso: septiembre-2006
Mensajes: 15
Antigüedad: 17 años, 7 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>