Skip to content

Instantly share code, notes, and snippets.

@jbutko
Created April 20, 2014 16:24
Show Gist options
  • Save jbutko/11118189 to your computer and use it in GitHub Desktop.
Save jbutko/11118189 to your computer and use it in GitHub Desktop.
CSS: Overflow-x value ignored in mobile Safari FIX
html {
/* This has to be added to html CSS */
overflow: hidden;
}
body {
overflow-x: hidden;
}
/* From http://stackoverflow.com/questions/17767176/overflow-x-value-ignored-in-mobile-safari */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment