如何使用bootstrap4增加容器的最大宽度?

时间:2019-10-23 11:53:35

标签: css sass bootstrap-4 width

我无法增加容器的最大宽度。如何在源代码中更改宽度?

我已经尝试在bootstrap-grid.css页面中更改宽度的大小。

Element Inspector允许我更改最大宽度。如何修改_grid.scss:6文件?

What I want to change

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

1 个答案:

答案 0 :(得分:2)

浏览器正在显示SASS映射。如果您只想使用CSS ,请覆盖每个容器断点...

@media (min-width: 576px) {
  .container {
    max-width: ??px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: ??px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: ??px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: ??px;
  }
}

CSS演示:https://www.codeply.com/go/zTBLpNsTDi
SASS演示:https://www.codeply.com/go/5D8PrphU4b


另请参阅:Set Bootstrap container class to 940px max

或者,使用SASS Bootstrap 4 min width fluid container (change responsive behavior)