Bootstrap行溢出浏览器视图

时间:2018-07-06 03:12:41

标签: html bootstrap-4 row

Bootsrtap行超出了我的期望范围,在浏览器中添加了一个滚动区域。我该如何解决?可以在这里查看该站点:www.testing.cpukeychains.com enter image description here

1 个答案:

答案 0 :(得分:1)

您要在div的左侧和右侧添加15px的空白。

尝试更改(styles.css中的第478行):

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: 0px;
  margin-left: -15px;
  }