我有这个推特引导代码

  <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>

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


当前回答

添加到你的CSS:

body { 
    padding-top: 65px; 
}

Bootstrap文档:

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

其他回答

使用导航栏navbar-default一切都很好,但如果你使用的是navbar-fixed-top,你必须包括自定义样式体{padding-top: 60px;},否则它将阻塞下面的内容。

<div class='navbar' data-spy="affix" data-offset-top="0">

如果您的导航栏最初位于页面的顶部,则将该值设置为0。否则,将data-offset-top的值设置为导航栏上方内容的值。

同时,你需要修改css如下:

.affix{
  width:100%;
  top:0;
  z-index: 10;
}

这里会出现两个问题:

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

<导航>…< /导航 > <!——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);
    });
  })

编辑:此解决方案不适用于Bootstrap的新版本,其中navbar-inverse和navbar-static-top类不可用。

使用MVC 5,我修复我的方式,是简单地添加我自己的Site.css,在其他人之后加载,用下面的行: 身体{填充:0}

并且我改变了_Layout开始的代码。Cshtml,为:

<body>
    <div class="navbar navbar-inverse navbar-static-top">
        <div class="container">
            @if (User.Identity.IsAuthenticated) {
                <div class="top-navbar">

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