Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/three.js/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Css 将col lg的网格选项大小更改为>;在一个特定的页面上_Css_Twitter Bootstrap_Twitter Bootstrap 3 - Fatal编程技术网

Css 将col lg的网格选项大小更改为>;在一个特定的页面上

Css 将col lg的网格选项大小更改为>;在一个特定的页面上,css,twitter-bootstrap,twitter-bootstrap-3,Css,Twitter Bootstrap,Twitter Bootstrap 3,我不熟悉bootstrap 3,目前正在使用网格系统 我有一个页面,我想更改,.col lg-应用于>1400px的屏幕宽度。我只想换这门课,这可能吗 如果是,那么我该怎么做?我想将所有其他页面的.col lg-设置保持为1200px(默认值)。您可以编写@media查询,例如: @media (min-width: 1400px) { .col-lg- { //your code goes here } }

我不熟悉bootstrap 3,目前正在使用网格系统

我有一个页面,我想更改,
.col lg-
应用于
>1400px的屏幕宽度。我只想换这门课,这可能吗


如果是,那么我该怎么做?我想将所有其他页面的
.col lg-
设置保持为1200px(默认值)。

您可以编写@media查询,例如:

@media (min-width: 1400px) {
  .col-lg- {
     //your code goes here
  }
}