“lepki nagłówek” Kod odpowiedzi

Pasek menu w 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

lepki nagłówek

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

Jak przewijać ustaloną pozycję

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

html, jak upewnić się, że nagłówek zawsze na górze

#header {
  position: fixed;
}

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

Odpowiedzi podobne do “lepki nagłówek”

Pytania podobne do “lepki nagłówek”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu