ios移动视图中的空白/滚动问题

时间:2017-05-03 17:21:12

标签: html ios css mobile whitespace

所有......

我正在处理:http://mercifulministries.com/index2.htmloverflow-x:hidden完美地删除了浏览器视图中左侧和右侧的空格。不幸的是,在移动设备上查看时,您必须向右滚动很长一段时间才能看到该网站。我尝试了各种溢出选项,并尝试通过以下方式适应移动设备:

@media
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {

        body {
            width:100%;
            overflow-x:hidden;
        }

}

但无济于事。我接下来应该尝试什么?

提前致谢!

0 个答案:

没有答案