2

如何使 twitter bootstrap 导航栏固定宽度,同时保持居中?

我尝试在 .navbar 中添加宽度参数,但导航栏未对齐。

.navbar {
overflow: visible;
margin-bottom: 20px;
color: #956362;
*position: relative;
*z-index: 2;
width: 650px; 
}

我也试过

<div class="span6 offset3">

但这也使它错位。

4

1 回答 1

4

用 div 包围它。给那个 div 一个固定的宽度。

就像是:

<div class="navbar-outer">
  <div class="navbar">
     <!--here goes the rest of the code-->
  </div>
</div>

CSS:

.navbar-outer {
  width:500px;
}
于 2012-12-08T18:51:28.233 回答