移动应用程序高度不适合

时间:2015-04-28 17:02:36

标签: css html5

我正在尝试在phonegap中创建一个小型Web浏览器(仅用于学习),我有一个issuse。我使用frameset作为页面的主标记。页面很棒,但它只是...它可以向下滚动。我希望它能被修复到设备上。

我使用了meta标签,但它只改变了宽度。

尝试了CSS的高度,但仍无效:

height: 100%;

也许别的什么? 有什么帮助吗?

注意:frameset它是一个简单的框架集标签,现在还没有其他名称。

1 个答案:

答案 0 :(得分:0)

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />

</head>

<frameset rows="5%,30%,5%" noresize>
<frame src="files/urlbox.html"></frame>

<frame src="files/page.html"></frame>

<frame src="files/menu.html"></frame>


</frameset>


</html>