私はこのスキーマを持っています:
<div id="container">
<div id="content">some text</div>
<footer> my footer things </footer>
</div>
と私のCSS:
body {
font-family:'Open Sans', sans-serif;
background:url(../imagens/fundo_cima.jpg) top center no-repeat;
background-color: #bac8e3;
color:#000;
font-size:12px;
height:100%;
}
#container{
width:100%;
min-height:100%;
}
#content{
width:990px;
min-height:526px;
margin:0 auto;
}
footer{
position: absolute;
bottom:0;
width:100%;
height:231px;
background:url(../imagens/fundo_baixo.jpg) center no-repeat;
}
私の問題:小さな解像度(1024x768)では、フッターがcontent
divをホバリングしていますが、大きな解像度では、これはうまく機能します....何を設定する必要がありますか?