Full Page <iframe>

前端 未结 5 1599
我寻月下人不归
我寻月下人不归 2020-12-22 16:32

I have the example code below. This works fine with all browsers except for browsers on mobile devices.

The overflow tag is the issue.

Works with all except

5条回答
  •  Happy的楠姐
    2020-12-22 17:22

    This is what I have used in the past.

    html, body {
      height: 100%;
      overflow: auto;
    }
    

    Also in the iframe add the following style

    border: 0; position:fixed; top:0; left:0; right:0; bottom:0; width:100%; height:100%
    

提交回复
热议问题