Skip to content

Instantly share code, notes, and snippets.

@jozsefs
Forked from bdalziel/gist:2293724
Created January 31, 2016 22:14
Show Gist options
  • Save jozsefs/d39abdb6012ede15d0eb to your computer and use it in GitHub Desktop.
Save jozsefs/d39abdb6012ede15d0eb to your computer and use it in GitHub Desktop.
Work around for iOS iframe growth
html,
body,
#doc {
height: 100%; // Passes through the height of the parent iframe element
}
#doc {
// Magic to prevent iOS growing the iFrame to fit the content.
// This container will mimic the behavior of the iframe on a desktop browser
-webkit-overflow-scrolling:touch;
overflow-y: scroll;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment