Hi,
I want middle Div to be automatically adjusted between left and right divs. When i write a long sentence or add something into middle div, the right div is pushed down. How can i make them stable?
Thanks
<body>
<div style="height:100px; background-color:#CCCCCC">TOP
</div>
<div style="width:200px; height:800px; float:left; background-color:#E9F3DE">LEFT
</div>
<div style="width:auto; height:800px; float:left; background-color:#E7E6C7">MIDLE
</div>
<div style="width:200px; height:800px; float:right; background-color:#EEF7F7">RIGHT
</div>
</body>