Search code examples
javascriptcssoverflowmobile-safari

How to disable scrolling on mobile Safari?


I have a long page, and I want to hide the content that goes underneath the "fold", and it should work on iPhone/iPad.

overflow:hidden applied to <body> does not seem to work on mobile Safari. I can't create a wrapper on the whole website to achieve that...

Do you know the solution?


Solution

  • After many days trying, I found this solution that worked for me:

    touch-action: none;
    -ms-touch-action: none;
    

    MDN touch-action docs