Disable horizontal scrolling on iPad

I need to disable the horizontal scrollbar on the iPad in Safari when on my site.

Ive tried e.preventDefault, but this seems to disable both vertical and horizontal scrolling.

Thank!

+3
source share
2 answers

Insert this at the top of the html page:

<meta name="viewport" content="width=device-width" />
+1
source

try it

<meta name="viewport" content="width=device-width; initial-scale = 1.0; maximum-scale=1.0; user-scalable=no" />
<style type="text/css">
body {
overflow-x:hidden;
}

+1
source

All Articles