我知道很多例子都显示了这个问题,但我尝试了所有内容,我的iframe不会在iPhone上滚动。
我有这段代码:
<div id="content">
<div id="header"><div>
<div id="container_iframe">
<iframe id ="external_content_iframe"></iframe>
</div>
</div>
使用CSS
#container_iframe
{
width: 100%;
height: 88%;
z-index: 1001;
margin: auto;
left: 0;
top: 55px;
right: 0;
bottom: 0;
overflow-y:scroll !important;
-webkit-overflow-scrolling:touch !important;
}
#external_content_iframe
{
width: 100%;
height: 100%;
z-index: 1001;
margin: auto;
left: 0;
right: 0;
bottom: 0;
top:15%;
}
你能帮我吗?