Hello... I'm tired to work with this divs :(. Here is my problem: I have 2 divs:
<div id="content">
<div id="row_left"></div>
<div id="row_middle"></div>
<div id="row_right"></div>
</div>
<div id="bottom"></div>
css:
#content
{
overflow: hidden; width: 100%;
}
Content-div is including another 3 divs, which should stay horizontally.
#row_left, #row_middle, #row_rifht { float: left; width: 33%; }
The trouble is that bottom div doesn't stay refer to content-text. It's always on the same position, even when content-rows text is over. How can i repair it?