2012-04-01 3 views

답변

2

당신은 절대 위치 #c, 상대적 위치 #a을해야합니다

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

Updated Example

+0

감사합니다. 그게 전부 야. –

관련 문제