How to implement two stretching blocks? That is, if there is more content in one, then the second is the highest in height and vice versa ...
<div class="nav"> <div class="prev"> <a href=""></a> </div> <div class="next"> <a href=""></a> </div> </div> .next a, .prev a { display: block; height: 90px; } .prev { float: left; width: 380px; } .next{ margin-left: 380px; }
Now there is such a fixed option, help make it rubber :)