說明:
我有有靈活widtih由JavaScript &高度多變的絕對位置的div容器。然後我有兩個孩子DIVS,可以改變身高,取決於他們內部的元素。 我需要這些div保持在parrent div內。相對的div會採取的div容器的其餘
我的問題:
第二個div離開parrent DIV的高度,但我不希望這樣。我需要它在剩下的空間裏,用scrollbarll。
(我有項目的形象,但不能發佈呢。)
我:
<div id="parrent"> <!-- This div is flexible and can change height !-->
<div id="children_top"></div> <!-- This div is flexible and can change height !-->
<div id="children_bot"></div> <!-- I need this div to take rest of the height space, needs to have scrolling if it's longer than rest space !-->
</div>
<style>
#parrent {
position: absolute;
top: 0; left: 0;
height: 100%;
}
#children_top {
background-color: #7f8f9f;
color: white;
width: 100%;
display: inline-block;
margin: 0;
padding: 5px 0;
overflow: hidden;
text-align: left;
text-transform: uppercase;
}
#childner_bottom {
display: inline-block;
width: 100%;
}
</style>
謝謝!它完美的工作! – calmbird