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 ?
|
feedback
|
|
Add the following property:
This will force the container to respect the height of all elements within it, regardless of floating elements. | |||||||
feedback
|
|
Try inserting this clearing div before the last
| |||
|
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.
| |||
|
feedback
|
|
i have made the changes please check link is that what you need. | |||||
|
feedback
|