使用引导程序时,当浏览器大小减小并且标头固定时,滚动不起作用


Scrolling does not work when browser size is reduced and header is fixed while using bootstrap

我正在使用下面给出的代码修复标题,标题也得到了修复,但当我缩小浏览器窗口的大小时,浏览器窗口的滚动将停止,我无法看到整个内容。请提出任何建议。

 div class="navbar navbar-default navbar-fixed-top" role="navigation">
      <div class="container">
        <div class="navbar-header">
        </div>
      </div>
    </div>

查看Bootstrap文档(http://getbootstrap.com/components/#navbar-固定顶部),上面写着:

需要正文填充除非在body的顶部添加填充,否则固定导航栏将覆盖您的其他内容。

演示:http://bootply.com/133083