Fix Collapsing Parents

Posted on: May 5th, 2011 by Lisa No Comments

There are many possible solutions to the problem where the parent collapses around floated elements. The following two options are the simplest fixes.

div.parent { float: left; } 

Or

div.parent div.parent { overflow: auto; }  

Make sure to change the word “parent” to the appropriate container name from your code.

A more detailed explanation of the problem and solution will be added later.

/*******************************************************************************************/

Leave a Reply