Колонки одинаковой высоты
by Vladimir
HTML
<div class="text_container_l">
<div class="text_container_r">
<div class="text_l">
тут текст длиннее
</div>
<div class="text_r">
или тут, неважно
</div>
</div>
</div>
CSS
.text_container_l {
width: 400px;
float:left;
}
.text_container_r {
width: 200px;
float:left;
margin:0 0 0 400px;
background: red;
}
.text_l {
float:left;
width:400px;
margin:0 0 0 -400px;
background: green;
}
.text_r {
float:left;
}