I recently implemented a design for my website where the content is contained within an absolute positioned div
that takes up the entire screen. However, I noticed that the scrolling on this div felt clunky and not as smooth as I would like it to be. After some research, I found a solution which involved adding
-webkit-overflow-scrolling: touch;
to the div.
Now, with momentum scrolling in place, I encountered a new issue where the individual elements within the div
were not displaying properly when I scrolled down the page. Despite checking the console for errors and verifying that the page itself was functioning correctly, the posts within the div
were still missing. This problem was especially noticeable on iPad devices. Here's a specific example of what I'm experiencing:
If anyone else can replicate this issue on their iPad or has suggestions for a potential fix, I would greatly appreciate your input. Ideally, I'd prefer not to resort to using Scrollability or similar plugins. It's possible that this issue may be related to the iOS6 beta version, but I would like some reassurance before moving forward.
Feel free to visit the site on your own iPad to see the problem firsthand.
And if you're curious about my bookmark organization system, I'd be happy to explain it further.