Jake Churchill wrote: > In other words, how do I make the wrapper assume the height of either > of the child elements to ensure that the height is always correct?
If some of those child elements are 'absolute positioned', then _they_ won't affect the height of their parent - no matter what. A 'min-height' on the parent _can_ work well enough in some cases, but usually fails a bit if font-resizing is applied in browsers. If you use 'floats' and 'in-flow' elements, then it is usually a question of making the parent 'expand to contain floats'. This is as good an example/solution as any, I think... <http://www.positioniseverything.net/easyclearing.html> regards Georg -- http://www.gunlaug.no ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
