【发布时间】:2014-04-16 06:05:56
【问题描述】:
当用户在我的网站上执行搜索时,我想在带有垂直滚动条的小 div 中显示结果,而不是用户需要滚动整个页面。这适用于所有浏览器,但我在 iPad 上遇到问题。我可以看到搜索结果不适合 div,但 iPad 上没有显示滚动条。此外,当我尝试在 div 内滚动时,会滚动整个页面。有没有解决方案可以让它发挥作用?
HTML 和 CSS:
<div class="searchResult">
//Here I show the search result
</div>
div.searchResult
{
height: 540px;
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}
【问题讨论】: