私はdivこのような領域を持っています:
<div class="con">
<div class="container"></div>
<div class="sidebar"></div>
</div>
そしてCSS:
.con{
width:100%;
}
.con .container{
width:70%;
min-height:500px;
float:left;
background:#f00;
}
.con .sidebar{
width:30%;
min-height:500px;
float:right;
background:#ccc;
}
containerおよびクラスのsidebar高さは動的です。これらのクラスの高さのいずれかが増加すると、クラスconも増加する必要があります。しかし、私の問題は、クラスの高さが常に 0 であることです。クラスに静的な高さconを与えることができないようです。con