twitter bootstrap navbar fixed top overlapping site

后端 未结 18 2029
甜味超标
甜味超标 2020-11-22 11:59

I am using bootstrap on my site and am having issues with the navbar fixed top. When I am just using the regular navbar, everything is fine. However, when i try to switch it

18条回答
  •  暖寄归人
    2020-11-22 12:39

    The problem is with navbar-fixed-top, which will overlay your content unless specify body-padding. No solution provided here works in 100% cases. The JQuery solution blink/shift the page after the page is loaded, which looks weird.

    The real solution for me is not to use navbar-fixed-top, but navbar-static-top.

    .navbar { margin-bottom:0px;} //for jumtron support, see http://stackoverflow.com/questions/23911242/gap-between-navbar-and-jumbotron
    
    
    

提交回复
热议问题