无法在全宽 - bootstarp上定义我的网站

时间:2017-11-07 11:48:23

标签: html css twitter-bootstrap twitter-bootstrap-3

我使用bootstrap网格系统, 当我滚动到窗口右侧时,会出现一个空白区域: enter image description here

我在宽度上定义了主体:100vw;

如何删除此空间?

1 个答案:

答案 0 :(得分:0)

即使我们没有您的任何代码,我也可以做一个小猜测。我之前遇到过这个问题,这似乎解决了我的问题。试试看。

html,body
{
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}