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
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.
%
vh
height: 100%