Skip to content

Instantly share code, notes, and snippets.

@bdalziel
Created April 3, 2012 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save bdalziel/2293724 to your computer and use it in GitHub Desktop.
Save bdalziel/2293724 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;
}
Copy link

ghost commented Aug 28, 2018

I wish this were better documented :(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment