Is there a way to prevent horizontal page scroll on a mobile device preferably with CSS only?
Here's an example: http://jsfiddle.net/YfLst/15/
Update: The following code solves the issue on iOS but the problem remains on Android:
html, body {
overflow-x: hidden !important;
position: relative !important;
}