I can’t seem to auto-grow my parent div’s height based on its floating child divs. All the children are floating, to take up space horizontally, an
div
If the parent container only has floating children, it will have no height. Adding the following CSS to the parent container should help:
.parent { overflow:hidden; width: 100%; }
Read this article for more: http://www.quirksmode.org/css/clearing.html.