Twitter Bootstrap 网站内容如下:
默认且简单的 940 像素宽、居中布局,适用于单个
<div class="container">
.
引用自http://twitter.github.com/bootstrap/scaffolding.html#layouts
这正是我在我的 HTML 中所拥有的,但是当我检查元素时,我看到这个 CSS 适用于它:
.container, .navbar-fixed-top .container, .navbar-fixed-bottom .container {
width: 1170px;
}
顺便说一句,如果我通过添加来覆盖该 CSS 规则......
div.container{
width:940px;
}
然后 div.container 里面的元素比 div.container 本身宽,看起来格格不入。
那么,为什么 Twitter Bootstrap 的“固定”布局没有固定呢?我怎样才能修复它?