IE7 CSS Scrolling Div Bug - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T16:15:29Zhttp://stackoverflow.com/feeds/question/67665http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/67665/ie7-css-scrolling-div-bug2IE7 CSS Scrolling Div Bugluckyllama2008-09-15T22:36:00Z2009-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><div style="overflow: auto; height: 150px;">
<div style="position: relative;">[...]</div>
</div>
</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#676673Answer by luckyllama for IE7 CSS Scrolling Div Bugluckyllama2008-09-15T22:36:28Z2008-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>