所以在我的代码中我有一个粘性页脚。粘性页脚具有带有 的 #wrapmin-height
容器100%
。但是min-height
你不能height:100%
在 wrap div 内的对象上使用。
所以我添加height:100%
了,但是当窗口高度太小时,它会通过使页脚滚动到 wrap div 中的内容来混淆布局。
有人对此有修复吗?
<div id="wrap">
<div id="main">
<div id="content">
</div>
</div>
<div class="clearfooter"></div>
</div>
<div id="footer">
</div>
CSS:
*{
padding: 0px;
margin: 0px;
}
html, body {
height: 100%;
}
body{
color: #FFF;
background-image:url('../images/black_denim.png');
}
#wrap {
min-height: 100%;
margin-bottom: -200px;
position: relative;
}
#topBanner{
width: 200px;
margin: 0px auto;
}
.clearfooter {
height: 200px;
clear: both;
}
/* footer */
#footer {
position: relative;
height: 200px;
width: 100%;
min-width: 960px;
}