disable horizontal scroll on mobile web

Sylph picture Sylph · Nov 16, 2010 · Viewed 114.6k times · Source

I'm having an issue where horizontal scrolls appear on certain phones for my site. I tried to put overflow-x: hidden but it's not working. The width is auto, so that it will actually automatically resize the web to suits the screen size. All other phones are fine except when viewed in blackberry, nokia e52, and Windows mobile, the horizontal scroll will appear.

Any advice?

Answer

pollux1er picture pollux1er · Apr 3, 2016

Simply add this CSS:

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