Skip to content

Instantly share code, notes, and snippets.

@tomswatermelon
Created March 11, 2016 14:23
Show Gist options
  • Save tomswatermelon/1485fc92ba91ea8d8627 to your computer and use it in GitHub Desktop.
Save tomswatermelon/1485fc92ba91ea8d8627 to your computer and use it in GitHub Desktop.
Preventing Overscroll
html, body {
width: 100%;
height: 100%;
overflow: hidden;
}
body > div {
height: 100%;
overflow: scroll;
-webkit-overflow-scrolling: touch;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment