Arreglando la navegación div para que no se oculte al desplazarse
Frecuentes
Visto 51 equipos
3 Respuestas
0
Utilice la herramienta position:fixed
e z-index
property (the issue you had was due to the layers : your fixed
div
estaba bajo #area
div) :
#nav{
position:fixed;
top:0;
width:100%;
height: 25px;
z-index:50;
background: blue;
}
contestado el 28 de mayo de 14 a las 12:05
0
Create another hidden navigation (same with already used nav), and show it when user scrolls down enough.
Esta es un buen tutorial Para hacer eso.
Y aqui esta some edited and working example desde mi sitio web.
contestado el 28 de mayo de 14 a las 12:05
No es la respuesta que estás buscando? Examinar otras preguntas etiquetadas css html or haz tu propia pregunta.
is así Qué estás buscando ? - shyammakwana.me