IOS 浏览器端overflow:scroll overflow:auto元素无法滑动bug解决方法整理

1130489-20190726175528906-1787244955.png
导致 iframe 里面的内容会把我下面的两个按钮一直怼到最下面,加载的时候按钮是有的 等到 iframe 里的内容加载完成后 那两个按钮就不显示了
解决方法:
由于我在iframe 标签外加了的div上加了margin-top:3%;height:45%;样式,所以需要在加上overflow:hidden;

关键代码:

        <div  style="margin-top:3%;height:45%;overflow:hidden; -webkit-overflow-scrolling: touch;overflow-y: scroll;" ><iframe src="/Pages/MobilePage/Announcement.html" align="middle"  scrolling="auto"  -webkit-overflow-scrolling="touch"  frameborder="0" allowTransparency="true"  style="height:100%;width:92%"></iframe></div>

参考链接

转载于:https://www.cnblogs.com/imtudou/p/11252003.html

Published by

风君子

独自遨游何稽首 揭天掀地慰生平

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注