我想将页脚保持在页面底部,同时保持绝对位置,具有以下页面结构:
<div id="head"> </div> //want to keep its size auto and always on the top (position absolute)
<div id="body"> </div> //the children of #body have position absolute (keep size auto)
<div id="foot"> </div> //want to keep this at the bottom (just below body , if body size
changes then footer will also change (position absolute)
我怎样才能做到这一点?
编辑
我想我不清楚我的问题,抱歉,但我的实际问题是在#main (height: auto) 中的内容是绝对的,所以这些内容不包括在 main 的高度中(我只是在猜这个)多数民众赞成在为什么 main 的高度是 0 因为这个页脚出现了。这是我的实际问题。