Position fixed cause scrolling problem
-
A Former User last edited by
If you have any element with position: fixed; in a website with a relative large scrolling, the scroll will be slow, like a "smooth slow scroll"
To solve the problem by yourself, you need put will-change: transform; or use transform: translate3d(0,0,0); on the element.
Demo Bug URL: https://oimparcial.com.br/opera-scrolling-bug.html
Demo Fixed URL: https://oimparcial.com.br/opera-scrolling-fixed.htmlSteps to reproduce:
1. Create a remote html file with a scrolling content
2. Create an element with position fixed.
3. ScrollActual result: The scroll will be slow, like a "smooth slow scroll"
Expected result: Regular and fast scrolling