.outer {
position:absolute;
height:100%;
width:100%;
background-color:#aaaaaa;
margin:0;
padding:0;
}
.content {
position:relative;
width:90%;
height:90%;
background-color:#444444;
margin:5%;
}
.inner {
position:absolute;
height:20%;
width:100%;
background-color:#eeeeee;
bottom:0;
margin-bottom:10%;
}
<div class="outer">
<div class="content">
<div class="inner"></div>
</div>
</div>
http://jsfiddle.net/L8H9J/
1)從內部類中刪除邊距風格
2)所有你的內部類中添加將內容與底部對齊
3)由於HTML文檔的流程,你不能明確地與內部類中的 底部
4)您可以使用這一招的話,但同樣所有元素對齊它們將 與流的position:static
5)來使用JavaScript來確定內部 每個元素合適邊緣內部類
提示:Use percentages; although you want the wrapper to be of height ~950px, but if you can use percentages for the dimensions, you would really love watching your web applications scale with the browsers:
你的包裝是否需要950px的最小高度? – George
是的,它有圖形(還有內容)。雖然我可以設置高度950px – Himmators
所以,你想要的東西是固定在頁面的底部,但也得到滾動條,如果身體小於絕對定位的元素? – boz