0
代碼和Codepen導航浮子:調整身體漂浮物的最小高度爲包含不止一個DIV
.wrapper1 {
overflow: hidden;
width: 700px;
border: 1px solid #000000;
padding: 20px;
}
.wrapper2 {
float: left;
width: 150px;
}
.content1 {
width: 100px;
border: 1px solid #000000;
margin-bottom: 20px;
padding: 10px;
background-color:#ffffff;
}
.content2 {
float: right;
width: 500px;
border: 1px solid #000000;
margin-bottom: 20px;
padding: 10px;
background-color:#ffffff;
}
.content2, .wrapper2 {
margin-bottom: -500em;
padding-bottom: 500em;
}
.wrapper3 {
clear: both;
}
<div class="wrapper1">
<div class="wrapper2">
<div class="content1">
text
</div>
<div class="content1">
text
</div>
</div>
<div class="content2">
text
</div>
</div>
<div class="wrapper3"></div>
我想讓它這樣內容2是在最小的相同的高度wrapper2,其高度與內容的變化。試圖增加和減少填充和邊距,但最終content2伸展到wrapper1的底部。我想讓content2在第二個content1框的底部結束。
完美的作品!謝謝! – Qwerty
@ Qwerty真棒!別客氣 :) –