I\'m working on a web app that uses -webkit-overflow-scrolling:touch
in several places to give the overflown divs inertia scrolling.
Since updating to I
I tried every solutions here without success. I was able to make it work by having the property -webkit-overflow-scrolling: touch; on the scrollable div AND on the parent container.
div.container {
-webkit-overflow-scrolling: touch;
}
div.container > div.scrollable {
-webkit-overflow-scrolling: touch;
overflow-y: auto;
}