IE 7/8 rendering Iinline (Floated Divs) as block: widths do not adjust to content? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T21:53:19Z http://stackoverflow.com/feeds/question/820894 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/820894/ie-7-8-rendering-iinline-floated-divs-as-block-widths-do-not-adjust-to-content 0 IE 7/8 rendering Iinline (Floated Divs) as block: widths do not adjust to content? Nic 2009-05-04T16:49:52Z 2009-05-04T23:27:19Z <p>I have a block element (DIV) who stretches across an entire page. It contains multiple floated DIVs of variable width. This element can live on many web pages (anyone can put it on their website). In FF on all sites it is rendered correctly and the floated DIVs are only as wide as their inner contents. In IE, it works sometimes- but on other sites it does not, and instead it stretches each floated DIV to the width of it's parent, which it should not be. Attached is an image to further exemplify (red DIV is container, black DIVs are floated).</p> <p><a href="http://img8.imageshack.us/img8/4734/screenrrl.jpg" rel="nofollow">http://img8.imageshack.us/img8/4734/screenrrl.jpg</a> (Image is Photoshopped, not an actual HTML render)</p> http://stackoverflow.com/questions/820894/ie-7-8-rendering-iinline-floated-divs-as-block-widths-do-not-adjust-to-content/822431#822431 1 Answer by Nic for IE 7/8 rendering Iinline (Floated Divs) as block: widths do not adjust to content? Nic 2009-05-04T22:34:19Z 2009-05-04T22:34:19Z <p>Found it! The issue is that I was using a single DIV to clear all elements inside the parent. Certain rendering modes in IE have a problem with this. Instead I replaced it by adding a clearfix class to the parent!</p> http://stackoverflow.com/questions/820894/ie-7-8-rendering-iinline-floated-divs-as-block-widths-do-not-adjust-to-content/822610#822610 0 Answer by Mike for IE 7/8 rendering Iinline (Floated Divs) as block: widths do not adjust to content? Mike 2009-05-04T23:27:19Z 2009-05-04T23:27:19Z <p>you can use this clearfix for ul (I suppose it is used on the screenshot):</p> <pre><code>#list { overflow: hidden; zoom: 1; } </code></pre> <p>instead of "clear: both;".</p>