“Cabeçalho pegajoso” Respostas de código

Barra de menu de colar no CSS

.navigation {
   /* fixed keyword is fine too */
   position: sticky;
   top: 0;
   z-index: 100;
   /* z-index works pretty much like a layer:
   the higher the z-index value, the greater
   it will allow the navigation tag to stay on top
   of other tags */
}
Muddy Macaw

Cabeçalho pegajoso

nav {
    position: sticky; top: 0;
}
fancyNancy

Como rolar a posição fixa

.fixed-content {
    top: 0;
    bottom:0;
    position:fixed;
    overflow-y:scroll;
    overflow-x:hidden;
}
Salo Hopeless

html como garantir que o cabeçalho sempre no topo

#header {
  position: fixed;
}

#content {
  margin-top: 100px;
}
Honey T

Respostas semelhantes a “Cabeçalho pegajoso”

Perguntas semelhantes a “Cabeçalho pegajoso”

Procure respostas de código populares por idioma

Procurar outros idiomas de código