美文网首页
iframe 移动端 滚动问题

iframe 移动端 滚动问题

作者: EdmundChen | 来源:发表于2019-11-25 14:49 被阅读0次

    html 结构

    <div class="iframe-container" >
      <iframe title={`${title} ${type}`} src={url} />
    </div>
    

    css结构

      iframe {
        width: 100%;
        height: 100%;
      }
    
    .iframe-container {
          width: 590px;
          height: 565px;
          overflow: scroll;
          -webkit-overflow-scrolling: touch;
    }
    

    效果图

    image.png

    相关文章

      网友评论

          本文标题:iframe 移动端 滚动问题

          本文链接:https://www.haomeiwen.com/subject/cqxjwctx.html