Make Scrolling NavBar Stick At Top Of Browser In Bootstrap

后端 未结 5 545
野的像风
野的像风 2021-02-04 04:30

I\'m new to Twitter Bootstrap and want to have a NavBar at the bottom of a deep\'ish MastHead and when the user vertically scrolls the page and the NavBar gets to the top of the

5条回答
  •  情书的邮戳
    2021-02-04 05:05

    You can try CSS3 sticky position:

    .sticky {
      position: sticky;
      top: 10px; /* When the element reaches top: 10px, it becomes fixed. */
      z-index: 100;
    }
    

    Browser support: http://caniuse.com/#feat=css-sticky

提交回复
热议问题