I want my container div to get the height of max of its children's height. without knowing what height the child divs are going to have. I was trying out on http://jsfiddle.net/gtdfY/2/ The container div is on red. which is not showing up. Why ?

link|improve this question

64% accept rate
feedback

4 Answers

up vote 1 down vote accepted

Add the following property:

.c{
    ...
    overflow: hidden;
}

This will force the container to respect the height of all elements within it, regardless of floating elements.
http://jsfiddle.net/gtdfY/3/

link|improve this answer
But Why this overflow works ? I cannot understand ? – Neel Basu Oct 19 '11 at 6:36
1  
Basically, adding this property forces the outer box to ignore the rule that floating containers have, where they are not calculated in height for containers, and apply them for the full background drawing. – Nightfirecat Oct 19 '11 at 15:29
feedback

Try inserting this clearing div before the last </div>

<div style="clear: both; line-height: 0;">&nbsp;</div>

link|improve this answer
feedback

You are floating the children which means they "float" in front of the container. In order to take the correct height, you must "clear" the float

The div style="clear: both" clears the floating an gives the correct height to the container. see http://css.maxdesign.com.au/floatutorial/clear.htm for more info on floats.

eg.

<div class="c">
    <div class="l">

    </div>
    <div class="m">
        World
    </div>
    <div style="clear: both" />
</div>
link|improve this answer
feedback

i have made the changes please check link is that what you need.

link|improve this answer
BUt why this one works ? and previous one doesn't ? – Neel Basu Oct 19 '11 at 6:35
follow the link given by @Yoeri in answer. – punit Oct 19 '11 at 6:39
feedback

Your Answer

 
or
required, but never shown

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