2013-01-31 78 views
2

溢出:隱藏的機身元素在桌面瀏覽器上運行良好。但移動瀏覽器/觸摸屏忽略了這種行爲。機身溢出:隱藏在手機瀏覽器中不起作用

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


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

我覺得問題來自觸摸!但我不知道如何解決這個問題。

回答

0

不知道它是否有幫助,但我得到的方式是使用另一個容器包裹所有其他的一切,並把溢出放在那。即

.siteContainer{ 
    position:relative; 
    overflow:hidden; 
} 
相關問題