在移动端下,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>

 

posted @ 2018-10-13 13:37  kcat  阅读(3846)  评论(0)    收藏  举报