-6

在引导容器宽度固定在 1170px 中,我想将容器宽度转换为 1000。所以,请任何人都可以回答我并告诉我程序。

4

3 回答 3

3

CSS覆盖:

body .container {
    width: 100%; !important;
}

或固定宽度:

body .container {
    width: 1000px; !important;
}

但是如果你使用bootstrap-responsive,你将失去响应性,所以你需要在你的 CSS 声明中配置它们。

于 2013-07-17T11:51:33.737 回答
1

最好的方法是在您的 html 标头中的 bootstrap-responsive 之后添加另一个 css 文件,规则如下:

body .container {
    width: 1000px; !important;
}

您想要覆盖的彼此引导样式

于 2013-07-17T14:01:16.380 回答
-2

您可以简单地style="width:1000px;" 为该 div指定

于 2013-07-17T11:51:32.287 回答