2

我们使用的是在所有浏览器中查看时都可以正常工作的 IFrame。但是,在iPad中查看时, IFrame 溢出中的 div 内容如下。参考 IOS中的链接IFrame ,此处给出的解决方案显示的小提琴给出了添加包装器

 #wrapper {
    position:relative;
    z-index:1;
    width:400px;
    height:400px;
    overflow:scroll;
}

到 IFrame 的父 div。但是IFrame里面的div还是在下面溢出

下图显示了在浏览器中查看时进入 iframe div 的滚动条。 在系统浏览器中工作正常

在 iPad 中查看 ipad的问题

任何建议将不胜感激。

4

2 回答 2

0

我猜Iframe里面有一个HTML文件,所以在HTML中将内容包装在包装器div中

#wrapper {
position: relative;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}

它的大小将相对于 html 正文,而不是 viewportSizes 可能是您希望第二行处理 Iframe 单击时闪烁的情况,发生在 ios'...

于 2014-02-06T10:06:12.243 回答
-1
you can use this;
<div> tag should be set as.
<div style="overflow:hidden"></div>
于 2013-09-17T06:03:19.140 回答