开发者

Disable horizontal scrolling on iPad

I’m looking to disable the horizontal scroll bar on the iPad in 开发者_如何学JAVASafari when on my site.

I’ve tried e.preventDefault but this seems to disable both vertical and horizontal scrolling.

Thanks!


Insert this in the head of the html page :

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


try this

<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;
}

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜