Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
溢出:隐藏的正文元素在桌面浏览器上运行良好。但移动浏览器/触摸屏会忽略此行为。
<style> body {overflow:hidden; height:100%; width:100%;} .content {height:2000px; width:1000px;} </style> <body> <div class="content"> long content </div> </body>
我认为问题来自于触摸!?但我不知道如何解决这个问题。
不确定它是否有帮助,但我绕过它的方法是在 body 标签内使用另一个容器,该容器包装了其他所有内容并在其上放置溢出。IE
.siteContainer{ position:relative; overflow:hidden; }