2012-04-01 41 views

回答

2

你需要让#c绝对定位,并#a相对定位:

#a { 
    width:250px; 
    height:250px; 
    background:grey;   
    position: relative; 
} 
#b { } 
#c { 
    bottom:0px; 
    position:absolute; 
} 

Updated Example

+0

感谢。而已。 – 2012-04-01 14:45:09