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> 、マージンとパディングの両方を 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 に答える