我如何嵌入
<div id="site-wrapper">
<div id="footer"></div>
</div>
总是出现在div的底部。
#footer{
position:relative;
height: auto;
margin-bottom: 0px;
}
答案 0 :(得分:7)
你需要:
#site-wrapper {
position: relative;
}
#footer {
position: absolute;
bottom: 0px;
}
答案 1 :(得分:0)
#footer {
position: absolute;
bottom: 0px;
}
应该工作。