私はこの構造を持っています:
<body>
<div id="header">..</div>
<div id="content">..</div>
<div id="footer">..</div>
</body>
そしてこのCSS:
本体{色:白; font-family:'Play'、sans-serif; 最大幅:2560px; マージン:0自動; 最小幅:960px; 高さ:100%; パディング:0; }
#header {
position: relative;
overflow: hidden;
margin: 0 auto;
min-width: 960px;
height: 95px;
background-image: url("../images/header-bg.png");
}
#content {
margin: 0 auto;
position: relative;
max-width: 1600px;
height:100%;
overflow:hidden;
}
#footer {
background-color: #009EDB;
background-image: url("../images/footer-bg.png");
bottom: 0;
height: 30px;
margin: 0;
position: relative;
width: 100%;
}
ただしbody
、ブラウザウィンドウの高さは100%ではありません。私の問題は何ですか?ありがとう。