Lower fixed div keeps jumping while scrolling on iPhone

I am working on a responsive design where I have a div container that should be set at the bottom of the viewport. The problem is that the div keeps moving when I scroll up / down the page, and it takes some time until it returns to a fixed position.

Does anyone have an idea how to fix this? What else can I do than position: fixed and lower: 0?

Thank!!:)

+5
source share
1 answer

Have you tried:

-webkit-backface-visibility: hidden; backface-visibility: hidden;

or maybe

-webkit-overflow-scrolling: touch

Hope this helps you!

+3
source

All Articles