Skip to content

Instantly share code, notes, and snippets.

@yanzhihong23
Last active June 10, 2017 08:03
Show Gist options
  • Save yanzhihong23/c04d781c80e29db9fdf5c1af1430c7eb to your computer and use it in GitHub Desktop.
Save yanzhihong23/c04d781c80e29db9fdf5c1af1430c7eb to your computer and use it in GitHub Desktop.
Scroll IFRAMEs on iOS
.scroll-wrapper {
-webkit-overflow-scrolling: touch !important;
overflow-y: scroll !important;
position: fixed;
right: 0;
bottom: 0;
left: 0;
top: 0;
}
.scroll-wrapper iframe {
height: 100%;
width: 100%;
}
body { -webkit-transform: translate3d(0, 0, 0); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment