我有 2 个并排的 div。
左 div 有不同的高度,如何让右 div 自动调整为左 div 的大小?如果右 div 的内容大于左 div,则应该添加一个滚动条。
的HTML
<div class="wrapper">
<div class="left"><!-- PHP Generated Content --></div>
<div class="right"><!-- PHP Generated Content --></div>
</div>
CSS
.left{
width: 70%;
float: left;
}
.right{
width: 29%;
float: right;
border: solid 1px #000000;
height: 100%;
min-height: 200px;
overflow: auto;
}
.wrapper{
height: auto;
float: left;
border: solid 1px red;
}