首页 > 技术文章 > iPhone Safari下iframe不显示滚动条无法滚动的解决方法

aimyfly 2016-12-27 09:23 原文

在iframe外层包一层div,添加如下样式:
style="-webkit-overflow-scrolling:touch;overflow:auto;"


@media only screen and (-webkit-min-device-pixel-ratio : 1.5),only screen and (min-device-pixel-ratio : 1.5){
.content-wrapper{-webkit-overflow-scrolling:touch;overflow:auto!important;}
}

推荐阅读