当内容 div 增长时,我的容器 div 高度不会增加。在下面的代码中,我希望具有类名的 divsummary
的大小随着 div 的house-address
增长而增加。任何帮助都感激不尽。
HTML:
<div class="summary shortS">
<div class="house-address">
<h2>booboo</h2>
<p>hehe hehee hdhddgf jfhfjf lkjgkhgh kjgkjg itutiut mhvjhgjhfg nbcncnb nbcnbc</p>
</div>
<div class="house-price">
<h4>$17272</h4>
<p>Guide Price</p>
</div>
<br style="clear:both;" />
</div>
CSS:
.summary.shortS {
display: block;
height: 64px;
}
.house-address {
width: 400px;
float: left;
}
.house-price {
width: 150px;
float: right;
}