我用phonegap開發,我遇到了風格問題。Phonegap Windows Phone差距空間底部
我只想在底部放置頁腳。
這裏是我的index.html
<!DOCTYPE html>
<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" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<title>Hello World</title>
<script type="text/javascript" src="cordova-2.6.0.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</head>
<body id="page">
<div id="bottom">
<p>Bonjour</p>
</div>
</body>
</html>
這是我的CSS
#bottom {
position:fixed;
width: 100%;
bottom: 0px;
background-color: #f00;
}
body {
min-height: 533px;
height : 100%;
padding: 0;
margin: 0;
}
而且我有這個
我怎樣才能解決這個問題,或者任何人遇到同樣的問題?
謝謝!
是它只在Windows手機上?也許它是一個窗口按鈕的特殊差距 – 2013-05-03 09:18:51
是的,它只在windows手機上。我們已經嘗試在iPhone和Android上,它工作正常。 – dpfauwadel 2013-05-03 09:50:45
@ChristopheSophy我希望我能夠upvote那個評論... – Dnaso 2013-05-03 13:21:34