无法在手机上滚动我的网页

时间:2013-06-25 13:52:35

标签: android html mobile cordova

我在标题中添加了以下行,但是当我尝试在Android设备上查看我的网页时,我无法向下滚动。

<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=0;" />
<meta name="apple-mobile-web-app-capable" content="yes" />

为什么我无法向下滚动任何想法?

2 个答案:

答案 0 :(得分:1)

也许你有:

html, body {
    height: 100%;
}

某些webkit的浏览器不喜欢这个;) 您应该尝试删除此规则。

答案 1 :(得分:1)

我注意到如果一个网站包含css位置的元素:fixed;屏幕不会在Android设备中滚动。你应该使用position:absolute或relative。