Bootstrap固定标头宽度

时间:2014-04-22 18:32:39

标签: html css twitter-bootstrap

我是Bootstrap的新手,无法找到问题的答案。

我正在使用AdminLTE引导程序主题进行测试。我想用它创建一个不错的网站主题,我想要一个固定的宽度。固定宽度正在工作,但不适用于标题栏。

我希望标题栏和菜单始终固定。 因为我添加了"固定" class to te body我的网站是固定宽度。 只有标题不是固定宽度。它只固定在屏幕上。

有人能帮助我吗?

1 个答案:

答案 0 :(得分:1)

您需要使用<div class="container"></div>

包裹标题的内部
<header class="header">
  <div class="container">

            <!-- Header Navbar: style can be found in header.less -->
            <nav class="navbar navbar-static-top" role="navigation">
              <a href="index.html" class="logo">
                <!-- Add the class icon to your logo image or logo icon to add the margining -->
                Testing
            </a>
            </nav>
  </div>

您还需要删除导航栏css中固定的左边距和位置。