12

我的印象是新的 Twitter Bootstrap 3 没有固定的网格系统。我做出这个假设是否正确?我已经搜索了文档,但我发现的只是响应式的新网格系统。我目前正在从事的项目不需要网站做出响应。这里可能有一个简单的解决方案。

4

3 回答 3

14

是的,您是正确的,因为新网格只是流动的。您可以使用这样的包装器创建一个简单的固定布局。

<div class="container-fixed">

.. the usual Bootstrap markup here...

</div>

CSS

.container-fixed {
  margin: 0 auto;
  max-width: 800px;
}

示例:http ://bootply.com/71142

Bootstrap 3.1 更新

container-fluid在 Bootstrap 3.1 中返回 .. http://www.bootply.com/121222

于 2013-08-01T12:16:23.697 回答
7

不确定这是否是在原始问题时编写的,但文档提供了有关如何禁用响应能力的步骤。

http://getbootstrap.com/getting-started/#disable-responsive

于 2014-01-13T21:00:06.377 回答
2

类似于@Skelly 的回答:

/* Reset the container */
.container {
  max-width: none !important;
  width: 970px;
}

在禁用响应中阅读有关此内容

非响应式引导模板

于 2013-09-27T12:42:17.723 回答