所有......
我正在处理:http://mercifulministries.com/index2.html,overflow-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;
}
}
但无济于事。我接下来应该尝试什么?
提前致谢!