disable horizontal scroll on mobile web
问题 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? 回答1: Simply add this CSS: html, body { overflow-x: hidden; } body { position: relative } 回答2: I've found this answer over