我有这个推特引导代码

  <div class='navbar navbar-fixed-top'>
    <div class='navbar-inner'>
      <div class='container'>
        <a class='btn btn-navbar' data-target='.nav-collapse' data-toggle='collapse'>
          <span class='icon-bar'></span>
          <span class='icon-bar'></span>
          <span class='icon-bar'></span>
        </a>
        <div class='nav-collapse'>
          <ul class='nav'>
            <li class='active'>
              <a href='some_url'>My Home</a>
            </li>
            <li>
              <a href='some_url'>Option 1 </a>
            </li>
            <li>
              <a href='some_url'>Another option</a>
            </li>
            <li>
              <a href='some_url'>Another option</a>
            </li>
          </ul>
        </div>
      </div>
    </div>
  </div>

但是当我查看页面的开始部分时,导航栏挡住了页面顶部附近的一些内容。有什么想法,如何使它下推其余的内容较低时,页面的顶部被查看,以便内容不被导航栏阻挡?


当前回答

在我从MVC 5教程衍生的项目中,我发现改变主体填充没有任何效果。下面的方法对我很有效:

@media screen and (min-width:768px) and (max-width:991px) {
    body {
        margin-top:100px;
    }
}
@media screen and (min-width:992px) and (max-width:1199px) {
    body {
        margin-top:50px;
    }
}

它解决了导航栏折叠成2行或3行的情况。这可以插入到bootstrap.css行之后的任何位置 身体{ 保证金:0; }

其他回答

添加到你的CSS:

body { 
    padding-top: 65px; 
}

Bootstrap文档:

固定的导航条会覆盖你的其他内容,除非你在正文的顶部添加填充。

对于引导3,类navbar-static-top而不是navbar-fixed-top可以防止这个问题,除非你需要导航栏始终可见。

一个更方便的解决方案供您参考,它在我所有的项目中都完美无缺:

更改您的第一个“div”

<div class='navbar navbar-fixed-top'>

to

<div class="navbar navbar-default navbar-static-top">

这里会出现两个问题:

页面加载(内容隐藏) 像这样的内部链接会滚动到顶部,并被导航栏隐藏:

<导航>…< /导航 > <!——70像素高——> <a href="#hello">hello</a> <!——点击向下滚动——> <hr style="margin: 100px"> <h1 id="hello">World</h1> <!——帮助!我隐藏了70像素!-->

引导4 w/内部页面链接

为了修复1),正如Martijn Burger上面所说,bootstrap v4 starter模板css使用:

body {
  padding-top: 5rem;
}

要解决这个问题,请检查一下。这段代码大部分工作(但不是第二次点击相同的哈希):

window.addEventListener("hashchange", function() { scrollBy(0, -70) })

这段代码用jQuery动画链接(不是slim jQuery):

  // inline theme global code here
  $(document).ready(function() {
    var body = $('html,body'), NAVBAR_HEIGHT = 70;
    function smoothScrollingTo(target) {
      if($(target)) body.animate({scrollTop:$(target).offset().top - NAVBAR_HEIGHT}, 500);
    }
    $('a[href*=\\#]').on('click', function(event){
      event.preventDefault();
      smoothScrollingTo(this.hash);
    });
    $(document).ready(function(){
      smoothScrollingTo(location.hash);
    });
  })

如果使用响应式引导,添加这样的填充是不够的。在这种情况下,当你调整窗口大小时,你会在页面顶部和导航栏之间得到一个间隙。正确的解决方案是这样的:

body {
  padding-top: 60px;
}
@media (max-width: 979px) {
  body {
    padding-top: 0px;
  }
}