0

HTML 5 と CSS3 を使用してページhttp://www.rexonmedia.com/test/sohalo/images/html5_simpletest.pngを再作成しようとしていますが、高さに問題があります。フッターの高さを50pxで計測しました。通常のブラウザでは問題ないように見えますが、モバイル ブラウザでは非常に小さく見えます。ここで何が欠けていますか。モバイル ブラウザで正しく表示されるタグまたは数式はありますか?

HTML テスト

<link rel="stylesheet" type="text/css" href="style/reset.css" />
<link rel="stylesheet" type="text/css" href="style/styles.css" />

<meta name="description" content="The HTML5 Herald">
<meta name="author" content="SitePoint">
<!--[if lt IE 9]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  <![endif]-->
</head>
<body>
<header> </header>
<div id="wrap">
<div id="main"> </div>
</div>
<footer> </footer>
</body>
</html>

CSS

@charset "UTF-8";
/* CSS Document */



header{
    width:100%;
    height:50px;
    background-color:#113b44;
}

#wrap {
    min-height: 100%;
}

#main {

}

footer {
    position:fixed;
    bottom:0px;
    width:100%;
    background-color:#231f20;
    height:50px;
}
4

1 に答える 1

0

CSS の高さを px ではなく pt にしてみませんか?これは、Web 開発ではよくある問題です。解決策は、ユーザーの画面解像度を検出し、「モバイル」スタイル シートを含めることです。

于 2012-07-17T00:50:03.287 に答える