IE7 CSS Scrolling Div Bug - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T16:15:29Z http://stackoverflow.com/feeds/question/67665 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/67665/ie7-css-scrolling-div-bug 2 IE7 CSS Scrolling Div Bug luckyllama 2008-09-15T22:36:00Z 2009-09-29T03:00:06Z <p>I recently came across an IE7 only bug that I thought I'd share so when I come to this site 6 months from now to figure out the same thing, I'll have it on hand. </p> <p>I believe the easiest way to recreate this bug would be the following:</p> <pre><code>&lt;div style="overflow: auto; height: 150px;"&gt; &lt;div style="position: relative;"&gt;[...]&lt;/div&gt; &lt;/div&gt; </code></pre> <p>In IE7, the outer div is a fixed size and the inner div is relatively positioned and contains more content (assuming the inner div causes an overflow). In all other browsers, this seems to work as expected.</p> http://stackoverflow.com/questions/67665/ie7-css-scrolling-div-bug/67667#67667 3 Answer by luckyllama for IE7 CSS Scrolling Div Bug luckyllama 2008-09-15T22:36:28Z 2008-09-15T22:36:28Z <p>The easiest fix would be to add <code>position: relative;</code> to the outer div. This will make IE7 work as intended. </p> <p>(See: <a href="http://rowanw.com/bugs/overflow_relative.htm" rel="nofollow">http://rowanw.com/bugs/overflow_relative.htm</a>).</p>