Last Updated: February 25, 2016
·
584
· sspross

iOS browser scrolling stops instead of getting slower

this behavior happens if you set overflow-y: scroll on html and body. use it on html only:

html, body {
    width: 100%;
    height: 100%;
}

html {
    overflow-y: scroll;
}