Answers for "html navigation bar stick at top"

CSS
7

stick menu bar in 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 */
}
Posted by: Guest on July-30-2020
0

why does my nav bar not stick to the sides

<nav class="navbar navbar-default navbar-fixed-top">
Posted by: Guest on November-17-2021

Code answers related to "html navigation bar stick at top"

Browse Popular Code Answers by Language