iOS 5 released web designers a new property -webkit-overflow-scrolling:touch that uses the iOS devices hardware accelerator to provide native scrolling for a scrollable div.

When implemented on our site in development it does work but not well. I believe there may be a CSS issue hence I ask here.

The following fiddle will show you it working perfectly http://jsfiddle.net/B94w9/1/

If you pop over to our site in development you will find the same panel under facilities tab but on iOS although the scrolling is perfect the overflowed section is not shown with pictures literarily chopped in two.

http://www.golfbrowser.com/courses/mill-ride/

I have no idea how to fix this enter image description here

link|improve this question

57% accept rate
feedback

6 Answers

up vote 7 down vote accepted

What a bugger they let loose here. Tried all manner of workarounds until I finally found the only property needed by for elements to be properly rendered in a -webkit-overflow-scrolling:touch div. Position: static.

Relative and absolute positioned elements are always cut off on the boundary, and completely missing (except for empty space) outside of it. If you change the position property dynamically, from static to absolute, only the visible portion of the scrollable div viewport stays rendered, wherever the offset happens to be.

link|improve this answer
Ill try it .... – Robin Knight Oct 28 '11 at 13:16
2  
This worked for me, I removed position: relative from some input elements (leaving them as the default position :static) and they render properly throughout the scroll. – Paul Dec 2 '11 at 1:54
nice work this solves the problem! – Drew Dahlman Apr 9 at 14:41
feedback

I have run into this bug as well. I fixed it by applying the following css to parent elements:

-webkit-transform: translate3d(0, 0, 0);

However, I have noticed that that slows down rendering and might select other input elements than wanted when a touched input element is scrolled into the center of the view (by Safari/iOS).

link|improve this answer
1  
This worked for me, setting it on the position: relative element inside the -webkit-overflow-scrolling: touch container. – samy-delux Jan 17 at 10:45
Please ignore the part "and might select other input elements than wanted when a touched input element is scrolled into the center of the view". I was mistaken. – relluf Jan 26 at 3:35
feedback

I'm currently under the same problem and after some research, it seems (asuming) to be an iOS 5 native scrolling issue. The only workaround wich kind of sucks is setting the -webkit-overflow-scrolling: to "auto", it won't behave like we want but at least your content will render as expected.

All this, while Apple fix this bug.

I already reported this [on the bug report platform provided from apple.]

UPDATE:

Hey guys, just got a reply from devbugs@apple.com and they say:

After further investigation it has been determined that this is a known issue, which is currently being investigated by engineering. This issue has been filed in our bug database under the original Bug ID# 10336367

Hope to get this fixed soon, waiting for an iOS update...

link|improve this answer
feedback

As @relluf pointed out, applying 3D transitions on the relative element fix the bug symptoms. However, I investigated it a bit further and it seems that applying -webkit-transform: translateZ(0px); works too (this is what Google does on gmaps map container) and it does not need to be on the relatively positioned element, just the direct descendant from the scrollable element.

So if you don't want to manually keep a list of all the places where the fix is needed, you just might do:

element {
    -webkit-overflow-scrolling: touch;
}

element > * {
    -webkit-transform: translateZ(0px);
}
link|improve this answer
This worked for me! Thanks a lot spheroid. – Mark Apr 29 at 18:47
feedback

I deeply investigated this bug, I also created a jsfiddle and submitted it to Apple in a bug report. Please see: iOS5 Images disappear when scrolling with webkit-overflow-scrolling: touch As soon as Apple replies to me, I'll report it on that topic so you can stay up-to-date about this very annoying bug

link|improve this answer
feedback

I also experienced the problem where overflow scroll with -webkit-overlfow-scrolling set to touch resulted in redraw problems with positioned elements. In my case I had a list where the individual items had relative positioning so that I could use positioning on their child elements. With the above CSS on iOS 5, when the user scrolled hidden content into view, there was a momentary delay before it redrew the screen to review the elements. It was really annoying. Fortunately I discover that if I gave the parent node position relative as well, this was resolved.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.