по этой же теме еще один случай
<div id="content_container">
<div class="child_container">
</div>
</div>
#content_container{
position:relative;
width:645px;
height:auto;
}
.child_container{
position:relative;
display:inline-block;
margin:20px;
width:250px;
height:432px;
cursor:pointer;
float:left;
}
Из за float:left в дочернем блоке родитель не растягивается по высоте, что делать?