For Mobile Safari, in order to enable native style scrolling on DOM elements, you can utilize a custom CSS property on the parent element:
-webkit-overflow-scrolling: touch;
I am wondering if it is possible to restrict the scrolling to just one axis. I want to achieve the same result as this:
overflow-x: scroll;
overflow-y: hidden;
Setting the standard CSS properties as mentioned above does not seem to produce the desired outcome.