如何在1920px大屏幕的bootstrap中将容器大小更改为960px

时间:2015-04-05 17:51:32

标签: javascript css twitter-bootstrap

在1200px设备中,我可以将容器大小更改为960px,但我的笔记本有全高清屏幕1920px .. *和

.container {
    max-width: 960px!important;
} 

对我的笔记本不起作用

有人知道该怎么办吗?

3 个答案:

答案 0 :(得分:2)

试一试:

@media only screen and (max-width: 1920px) {
  .container {
     max-width: 960px !important;
  }
}

答案 1 :(得分:0)

同时检查以确保没有其他带有@media styles的css文件取消此文件。例如:

<link href="stylesheet_1.css" />
<link href="stylesheet_2.css" />

如果.container { max-width: 960px!important; }中有stylesheet_1.css,请确保.container { max-width: 1170px!important; }中没有stylesheet_2.css取消{{1}}。它发生了。

答案 2 :(得分:0)

这种方式也是如此

.container {max-width:960px;}

P.S我的问题是我的浏览器,我重新安装它,一切正常 谢谢你的帮助;)