Make Scrolling NavBar Stick At Top Of Browser In Bootstrap

后端 未结 5 651
野的像风
野的像风 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:14

    In aiming for browser compatibility, the following might be of more use.

    .sticky {
      position: -webkit-sticky;
      position: -moz-sticky;
      position: -ms-sticky;
      position: -o-sticky;
      position: sticky;
      top: 10px;
      z-index: 100;
    }
    

提交回复
热议问题