如何将bootstrap css宽度更改为1000px?

时间:2013-07-17 11:49:21

标签: jquery html5 css3 twitter-bootstrap

在bootstrap容器中宽度固定在1170px,我想转换一下 容器宽度变成1000.所以,请任何人都能回答我,并告诉我程序。

3 个答案:

答案 0 :(得分:3)

CSS覆盖:

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

或固定宽度:

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

但是如果你使用bootstrap-responsive,你将失去重复性,因此你需要在CSS声明中配置它们。

答案 1 :(得分:1)

最好的方法是在html标头中使用bootstrap-responsive后添加另一个css文件,其规则为:

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

您要覆盖的每个其他引导程序样式

答案 2 :(得分:-2)

您只需为该div指定style="width:1000px;"