i have a div that floats to left and another one that floats to right the main main div that including the floating div does not reach the bottom of the page and the code example is:
<div style=" width: 900px; height:auto; margin:5px auto; background:#666; ">
<div style="float:left;">
Some content! Some content! Some content!
</div>
<div style="float:right;">
Some content! Some content! Some content!
</div>
</div>
what is problem?