Recently, I have been working on designing the mobile version of a website. However, I noticed that when I try to scroll quickly on my phone, the scrolling gets interrupted and I have to wait for it to catch up.
I am using the fullpage.js library in this project, but I believe the issue lies with the overflow property.
html, body{
font-family: sans-serif;
width: 100%;
padding: 0;
margin: 0;
// height: 100%;
height: auto;
overflow-x: hidden !important;
}
Click here for more information.