Disable scrolling in all mobile devices

后端 未结 13 1168
粉色の甜心
粉色の甜心 2020-11-28 03:18

This sounds like there should be a solution for it all over the internet, but I am not sure why I cannot find it. I want to disable Horizontal scrolling on mobile devices. B

13条回答
  •  借酒劲吻你
    2020-11-28 04:11

    After having no success trying all the answers I managed to turn my mobile scroll off by simply adding:

    html,
    body {
      overflow-x: hidden;
      height: 100%;
    }
    
    body {
      position: relative;
    }
    

    Its important to use % not vh for this. The height: 100% was something I had been missing all along, crazy.

提交回复
热议问题