2

溢出:隐藏的正文元素在桌面浏览器上运行良好。但移动浏览器/触摸屏会忽略此行为。

<style>
body {overflow:hidden; height:100%; width:100%;}
.content {height:2000px; width:1000px;}
</style>


<body>
    <div class="content"> long content </div>
</body>

我认为问题来自于触摸!?但我不知道如何解决这个问题。

4

1 回答 1

0

不确定它是否有帮助,但我绕过它的方法是在 body 标签内使用另一个容器,该容器包装了其他所有内容并在其上放置溢出。IE

.siteContainer{
    position:relative;
    overflow:hidden;
}
于 2013-08-05T20:59:57.563 回答