2011-02-27 109 views
22
#Container { 
    width: 500px; 
    height: 600px; 
} 

#TheElement { 
    width: 500px; 
    height: 100px; 
    background-color: #000000; 
} 

我如何獲得#The元素被鎖定到#Container的最底部,而不管容器內部的其他內容,沒有一堆利潤率?包含div的底部的鎖元素

回答

53

您可以使用relative absolute positioning

http://jsfiddle.net/gzJM6/

#Container { 
    width: 500px; 
    height: 600px; 
    position: relative 
} 

#TheElement { 
    width: 500px; 
    height: 100px; 
    background-color: #000000; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
} 
+0

這是我想的第一件事情,但它dosent工作由於某種原因 – WillingLearner 2011-02-27 21:13:04

+0

檢查我的jsfiddle,它似乎很好地工作。你能提供關於你的情況的更多細節嗎? – thirtydot 2011-02-27 21:14:14

+0

哦......我錯過了#Container的相對定位。它現在有效。謝謝。 – WillingLearner 2011-02-27 21:21:44