IE CSS Bug - How do I maintain a position:absolute when dynamic javascript content on the page changes - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T18:37:21Z http://stackoverflow.com/feeds/question/33837 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/33837/ie-css-bug-how-do-i-maintain-a-positionabsolute-when-dynamic-javascript-conten 2 IE CSS Bug - How do I maintain a position:absolute when dynamic javascript content on the page changes Graphain 2008-08-29T02:17:57Z 2009-01-09T14:46:01Z <p>Hi,</p> <p>I have a page where there is a column and a content div, somewhat like this:</p> <pre><code>&lt;div id="container"&gt; &lt;div id="content"&gt;blahblahblah&lt;/div&gt; &lt;div id="column"&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>With some styling I have an image that is split between the column and the content but needs to maintain the same vertical positioning so that it lines up.</p> <p>Styling is similar to this:</p> <pre><code>#column { width:150px; height:450px; left:-150px; bottom:-140px; background:url(../images/image.png) no-repeat; position:absolute; z-index:1; } #container { background:transparent url(../images/container.png) no-repeat scroll left bottom; position:relative; width:100px; } </code></pre> <p>This works great when content in #content is dynamically loaded before rendering. This also works great in firefox always. However, in IE6 and IE7 if I use javascript to change the content (and thus height) of #content, the images no longer line up (#column doesn't move). If I use IE Developer Bar to just update the div (say add position:absolute manually) the image jumps down and lines up again.</p> <p>Is there something I am missing here?</p> <p>@Ricky - Hmm, that means in this case there is no solution I think. At its best there will be a jaggedy matchup afterwards but as my content expands and contracts etc. hiding/showing doesn't work out to be practical. Still thanks for answering with the best solution.</p> http://stackoverflow.com/questions/33837/ie-css-bug-how-do-i-maintain-a-positionabsolute-when-dynamic-javascript-conten/33854#33854 3 Answer by Ricky for IE CSS Bug - How do I maintain a position:absolute when dynamic javascript content on the page changes Ricky 2008-08-29T02:30:41Z 2008-08-29T02:30:41Z <p>Its a bug in the rendering engine. I run into it all the time. One potential way to solve it is to hide and show the div whenever you change the content (that in turn changes the height):</p> <pre><code>var divCol = document.getElementById('column'); divCol.style.display = 'none'; divCol.style.display = 'block'; </code></pre> <p>Hopefully this happens fast enough that it isn't noticeable :)</p> http://stackoverflow.com/questions/33837/ie-css-bug-how-do-i-maintain-a-positionabsolute-when-dynamic-javascript-conten/428305#428305 0 Answer by Pete for IE CSS Bug - How do I maintain a position:absolute when dynamic javascript content on the page changes Pete 2009-01-09T14:46:01Z 2009-01-09T14:46:01Z <p>Thanks so much for this solution!</p>