Created
April 20, 2014 16:24
-
-
Save jbutko/11118189 to your computer and use it in GitHub Desktop.
CSS: Overflow-x value ignored in mobile Safari FIX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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