twitter bootstrap navbar fixed top overlapping site

后端 未结 18 1748
甜味超标
甜味超标 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:24

    This issue is known and there's a workaround in the twitter bootstrap site:

    When you affix the navbar, remember to account for the hidden area underneath. Add 40px or more of padding to the . Be sure to add this after the core Bootstrap CSS and before the optional responsive CSS.

    This worked for me:

    body { padding-top: 40px; }
    

提交回复
热议问题