Skip to content

Instantly share code, notes, and snippets.

@hexorx
Created December 24, 2013 02:36
Show Gist options
  • Save hexorx/8108045 to your computer and use it in GitHub Desktop.
Save hexorx/8108045 to your computer and use it in GitHub Desktop.
iNoBounce scrollable
.scrollable {
min-height: 0;
-webkit-box-flex: 1;
box-flex: 1;
-webkit-flex: 1;
flex: 1;
overflow-x: hidden
overflow-y: auto;
-webkit-transition-property: top, bottom;
transition-property: top, bottom;
-webkit-transition-duration: .2s, .2s;
transition-duration: .2s, .2s;
-webkit-transition-timing-function: linear, linear;
transition-timing-function: linear, linear;
-webkit-overflow-scrolling: touch;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment