我想設置min-height
財產如有必要將擴大,以適應其內容,但我很震驚地意識到,它不顯示內容可言,尤其是當我重新尺寸。有些內容從顯示中完全丟失。下面的代碼並不是想法的確切代碼,但這是我能得到的最接近我的問題。爲什麼最小高度不增加,以適應不斷增加的內容
<div class="parent">
<div class="box"> Box One</div>
<div class="box"> Box two</div>
<div class="box"> Box three</div>
<div class="box"> Box four</div>
<div class="box"> Box five</div>
<div class="box"> Box six</div>
</div>
<style>
.parent {
min-height: 300px;
width: 100%;
background-color: blue;
}
.box {
width: 50%;
height: 50px;
color white;
}
</style>
你的代碼是工作的罰款。它容納新的內容。看到這個https://jsfiddle.net/bro49tg7/ –
看起來你的'min-height'按預期工作......你想達到什麼目的? – andreas
我不太確定,但它與我寫的真實代碼不同。 – pedroyanky