Twitter bootstrap 3 引导3右侧移动设备上的空白

Twitter bootstrap 3 引导3右侧移动设备上的空白,twitter-bootstrap-3,Twitter Bootstrap 3,在移动设备上向右滚动时,我得到一个空白。桌面浏览可以正常工作。我试过以下方法,但都奏效了 css: html,正文{ 宽度:100%; overflow-x:hidden;发现overflow-x:hidden;如果放入包装整个页面内容的#intro类中,它会正常工作 在此处找到解决方案: html, body { width: 100%; overflow-x: hidden; <- Don't like this one, would rather have it vi

在移动设备上向右滚动时,我得到一个空白。桌面浏览可以正常工作。我试过以下方法,但都奏效了

css:

html,正文{
宽度:100%;

overflow-x:hidden;发现
overflow-x:hidden;
如果放入包装整个页面内容的
#intro
类中,它会正常工作

在此处找到解决方案:

html, body {
  width: 100%;
  overflow-x: hidden;    <- Don't like this one, would rather have it visible
}
<meta name="viewport" content="width=device-width, initial-scale=1">