在div的底部嵌入一个页脚

时间:2011-04-27 02:07:52

标签: css

我如何嵌入

<div id="site-wrapper">
   <div id="footer"></div>
</div>

总是出现在div的底部。

#footer{
 position:relative;
 height: auto;
 margin-bottom: 0px;
}

2 个答案:

答案 0 :(得分:7)

你需要:

#site-wrapper {
  position: relative;
}

#footer {
  position: absolute;
  bottom: 0px;
}

答案 1 :(得分:0)

#footer { 
position: absolute; 
bottom: 0px; 
}

应该工作。