0
請plunker https://plnkr.co/edit/rXyZqkPeJyF2GHhbQrDn?p=preview
<div class="parent">
<div class="firsrChild">
Header
</div>
<div class="secondChild">
a<br/> a<br/> a<br/> a<br/> a<br/> a<br/> a<br/> a<br/> a<br/> a<br/>
</div>
<div class="thirdChild">
</div>
</div>
.parent{
width : 100%;
height : 100%;
overflow : auto;
border : 1px solid red;
position : absolute ;
}
.firsrChild{
position : absolute;
top :0;
height : 25%;
background-color : yellow;
width : 100%;
border : 1px solid blue;
}
.secondChild{
position : relative;
height : auto;
width : 100%;
background-color : gray;
border : 1px solid green;
top :25;
}
.thirdChild{
position:absolute;
height : 30%;
width : 100%;
top : 50%;
background-color : red;
border : 1px solid yellow;
}
什麼,我想要實現
的則firstChild具有高度的25%的絕對位置
secondChild具有高度「自動」應該第一個孩子後,開始立即
thirdChild有絕對的位置,但如果secondChild的高度增加thirdChild應該自動下推。
例如firstChild的身高的25%; secondChild的身高擴大了40%左右; 所以thirdChild應該開始頂= 65%(則firstChild的25%的高度和40%secondChild的高度)
會不會影響它,但你可能想以修復類錯字'firsrChild' - 這是在整個一樣的,所以我說,也不會影響它,但無論如何這可能是一個好主意...... – developius