We have a web application that gives us a little problem on Windows Phone 8. Here is the URL for the link: --Removed link -
Last week, scrolling on Windows Phone 8 worked inside a div schedule. This is not the case this week. I spent many hours trying to nail this, and I just can't find the reason. I went through the removal of every part of MS-specific CSS without any changes in the scrollable div, I removed almost all the elements from the page except this scrollable div, also without changes.
I tried the solutions here: Scrolling overflow Div when specifying -ms-viewport?
and here: Windows Phone 8 IE10 Mobile overflow scroll does not work
and I just can't get the scroll to scroll.
If you check other browsers or devices, the div will scroll as intended. Any suggestions would be very helpful.
thank
It finally turned out that someone else was facing this problem -
We used the rule (-ms-touch-action: none! Important;) to disable the double scaling, which was the first part of the problem.
The second problem was that we had several containers containing our div that we wanted to scroll through. One of the parent containers had height and overflow: auto, but also our scrollable div. Removing these rules from one of two gave us a result that works.
source
share