2

我用 phonegap 开发,我的风格有问题。

我只想在底部放置一个页脚。

这是我的 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;
}

我有这个

电话结果

我该如何解决这个问题,或者有人遇到同样的问题?

谢谢 !

4

2 回答 2

0

检查样式,确保没有任何其他样式被自动添加。特别要检查的一件事是<p> Try 将边距和填充都设置为 0 的样式。

于 2013-05-03T17:57:19.943 回答
0

首先,定位固定在 IE 上不起作用。

为了解决这个问题,我在我的项目中添加了包含 jquery 并将位置更改为绝对

#bottom {
position:absolute;
width: 100%;
bottom: 0px;
background-color: #f00;        
margin: 0px;
padding: 0px;
left: 0px;
}

和我的 index.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>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/latest/jquery.mobile.css">
    <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/latest/jquery.mobile.js"></script>

    <script type="text/javascript" src="cordova-2.6.0.js"></script>

    <script type="text/javascript" src="js/index.js"></script>

</head>
<body>  
    <div id="bottom">
        <p>Bonjour</p>
    </div>
</body>
</html>

现在它正在工作

于 2013-05-06T09:40:51.420 回答