Force a floated or absolutely position element to stay "in the flow" with CSS - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T04:33:35Zhttp://stackoverflow.com/feeds/question/1042438http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1042438/force-a-floated-or-absolutely-position-element-to-stay-in-the-flow-with-css0Force a floated or absolutely position element to stay "in the flow" with CSSB T2009-06-25T06:38:18Z2009-06-25T13:40:36Z
<p>I'm looking for a way to force floated or absolutely positioned elements to stay in the flow in css. I'm pretty much thinking css is stupid for not having something like flow:on flow:off to keep it in the flow or take it out. </p>
<p>The issue is that I want to have a div element with a variable height, I have a floated image on the left in the div, and I want the div to be at least the height of the picture. I also want it to be at least big enough to hold all the text that IS in the flow (this obviously isn't a problem).</p>
<p>I need the picture to be able to vary in size. I am currently using a jQuery solution, but its acting up. Since I don't feel like debugging, and I feel like there <em>should</em> be some kind of CSS solution, i'm asking.</p>
<p>Anyone know how I can do this?</p>
http://stackoverflow.com/questions/1042438/force-a-floated-or-absolutely-position-element-to-stay-in-the-flow-with-css/1042516#10425160Answer by Laurence Gonsalves for Force a floated or absolutely position element to stay "in the flow" with CSSLaurence Gonsalves2009-06-25T07:04:26Z2009-06-25T07:04:26Z<p>A hack that may work in your situation is to add another element inside your div after the rest of the content that has the CSS clear property set to "both" (or left, since your image is on the left). eg:</p>
<pre><code><br style="clear: both" />
</code></pre>
<p>This will force the element below the floated elements, which will stretch the containing div.</p>
http://stackoverflow.com/questions/1042438/force-a-floated-or-absolutely-position-element-to-stay-in-the-flow-with-css/1042627#10426270Answer by danrichardson for Force a floated or absolutely position element to stay "in the flow" with CSSdanrichardson2009-06-25T07:37:11Z2009-06-25T07:37:11Z<p>Instead of using a new element to clear the div at the end, you can add this onto the absolute div css;</p>
<pre><code>overflow: auto;
</code></pre>
<p><em>Obviously</em> IE likes to play differently so you need to supply a width to it too. I am assuming the absolute div has a set width... so you can just set it to that width.</p>
<pre><code>.abs-div {
position: absolute;
overflow: auto;
width: 160px; /* Replace with your width */
}
</code></pre>
http://stackoverflow.com/questions/1042438/force-a-floated-or-absolutely-position-element-to-stay-in-the-flow-with-css/1042898#10428980Answer by Webdevelopertut for Force a floated or absolutely position element to stay "in the flow" with CSSWebdevelopertut2009-06-25T09:34:44Z2009-06-25T09:34:44Z<p>YOu can also set a <a href="http://htmlcsstutorials.blogspot.com/2009/06/how-to-have-div-min-height.html" rel="nofollow">min-height</a> to the div to get expand. Then give <br style="clear: both" />, so that the next div will come down.</p>
<p><a href="http://htmlcsstutorials.blogspot.com" rel="nofollow">webdevelopertut</a></p>
http://stackoverflow.com/questions/1042438/force-a-floated-or-absolutely-position-element-to-stay-in-the-flow-with-css/1044003#10440030Answer by rpflo for Force a floated or absolutely position element to stay "in the flow" with CSSrpflo2009-06-25T13:40:36Z2009-06-25T13:40:36Z<p>I usually go with <code>overflow: hidden</code> or <code>overflow: auto</code>.</p>
<p><a href="http://ryanflorence.com/blog/pushing-a-divs-height-with-floated-children/" rel="nofollow">Here are three solutions.</a></p>