Last active
December 26, 2015 22:18
-
-
Save jberrydev/7221633 to your computer and use it in GitHub Desktop.
Easier CSS way around it MAC Rubber Band Scrolling issue inside your Web App.
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{ | |
margin:0; | |
padding:0; | |
overflow: hidden; | |
} | |
body{ | |
position: absolute; | |
width:100%; | |
height:100%; | |
overflow: auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment