我希望我的內容區域伸展到父的高度,我對標題區域的固定高度。我無法對內容區域的高度進行硬編碼,因爲在我工作的情況下,父區域的高度可能會發生變化。拉伸格於母公司的高度
HTML:
<div class="parent">
<div class="title">Title</div>
<div class="content">
<p>My Content</p>
</div>
</div>
CSS:
.parent{
width : 500px;
height: 300px;
background-color : gray;
position: absolute;
}
.title{
height:50px;
background-color: #94A6E0;
margin:5px;
}
.content{
background-color: #8CBF99;
margin:5px;
}
的jsfiddle:http://jsfiddle.net/PGJJv/
正是我想要的!謝謝 – janith
表格在IE7上失敗 – Dipak
不客氣。 @Dipaks:我知道,但OP沒有指定瀏覽器支持。已添加到我的答案額外的信息。 – Kyle