Disable scrolling in all mobile devices

后端 未结 13 1187
粉色の甜心
粉色の甜心 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 03:59

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

    The position relative is important, and i just stumbled about it. Could not make it work without it.

提交回复
热议问题