在移动端下,iframe无法滚动问题
解决办法:
iframe外面需要一个容器,添加css
css代码:
.container{ height:100px; overflow: auto; -webkit-overflow-scrolling: touch; } .frame{ width:100%; height:100%; }
html代码:
<div class="container"> <iframe class="frame" src=""> </div>
解决办法:
iframe外面需要一个容器,添加css
css代码:
.container{ height:100px; overflow: auto; -webkit-overflow-scrolling: touch; } .frame{ width:100%; height:100%; }
html代码:
<div class="container"> <iframe class="frame" src=""> </div>