up vote 0 down vote favorite
share [g+] share [fb]

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.

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).

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 should be some kind of CSS solution, i'm asking.

Anyone know how I can do this?

link|improve this question

73% accept rate
1  
Can you give the link for a working demo? – rahul Jun 25 '09 at 6:44
1  
setting position:absolute would be the same as saying flow:off. You're taking the element out of the flow, so you can position it where ever you want. – peirix Jun 25 '09 at 6:48
feedback

3 Answers

up vote 0 down vote accepted

I usually go with overflow: hidden or overflow: auto.

Here are three solutions.

link|improve this answer
Perfect. Works exactly like I expect the hypothetical "flow:on" to work. I'd use overflow:auto, because then it won't cut off content I want to be outside of the box (if that ever comes up). – B T Jun 25 '09 at 17:40
feedback

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:

<br style="clear: both" />

This will force the element below the floated elements, which will stretch the containing div.

link|improve this answer
This causes problems when the element is already positioned next to floating content. It doesn't solve the problem for me. – B T Jun 25 '09 at 17:41
feedback

Instead of using a new element to clear the div at the end, you can add this onto the absolute div css;

overflow: auto;

Obviously 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.

.abs-div {
    position: absolute;
    overflow: auto;
    width: 160px; /* Replace with your width */
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.