OK, so active questions tagged RSS is this feed:
http://stackoverflow.com/feeds/tag/css
If you view source on the feed, then search for the name of that question, "css div overlay and jquery", you'll find that the question body is properly encoded:
<id>http://stackoverflow.com/questions/2054567/css-div-overlay-and-jquery</id>
<re:rank scheme="http://stackoverflow.com">-2</re:rank>
<title type="text">css div overlay and jquery</title>
<category scheme="http://stackoverflow.com/feeds/tag/css/tags" term="css"/><category scheme="http://stackoverflow.com/feeds/tag/css/tags" term="jquery"/><category scheme="http://stackoverflow.com/feeds/tag/css/tags" term="overlay"/>
<author><name>ngreenwood6</name></author>
<link rel="alternate" href="http://stackoverflow.com/questions/2054567/css-div-overlay-and-jquery" />
<published>2010-01-13T05:05:01Z</published>
<updated>2010-01-20T16:10:42Z</updated>
<summary type="html">
<p>This is more or less a css question but i am using it with jquery. Ok so basically what I have is this:</p>
<pre><code>&lt;div style="overflow: hidden; width: 1000px; height: 450px; background-color: rgb(0, 0, 0); position: relative;" id="wrapper"&gt;
&lt;div style="background-color: rgb(255, 255, 255); opacity: 0.9; top: 0pt; left: 0pt; width: 1000px; height: 450px; position: absolute; z-index: 500;" id="mask"&gt;&lt;/div&gt;
&lt;div class="ui-draggable" style="margin: 60px auto auto; position: relative; width: 1550px; height: 340px;" id="test"&gt;
&lt;div style="float: left; margin-left: 10px; width: 100px; position: relative;" class="row"&gt;
&lt;div style="width: 100px; height: 100px; margin-top: 10px; position: relative;"&gt;&lt;img style="width: 100px; height: 100px; position: relative;" class="img" src="/images/Chrysanthemum.jpg"&gt;&lt;/div&gt;
&lt;div style="width: 100px; height: 100px; margin-top: 10px; position: relative;"&gt;&lt;img style="width: 100px; height: 100px; position: relative;" class="img" src="/images/Desert.jpg"&gt;&lt;/div&gt;
&lt;div style="width: 100px; height: 100px; margin-top: 10px; position: relative;"&gt;&lt;img style="width: 100px; height: 100px; position: relative;" class="img" src="/images/Hydrangeas.jpg"&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style="float: left; margin-left: 10px; width: 100px; position: relative;" class="row"&gt;
&lt;div style="width: 100px; height: 100px; margin-top: 10px; position: relative;"&gt;&lt;img style="width: 100px; height: 100px; position: relative;" class="img" src="/images/Jellyfish.jpg"&gt;&lt;/div&gt;
&lt;div style="width: 100px; height: 100px; margin-top: 10px; position: relative;"&gt;&lt;img style="width: 100px; height: 100px; position: relative;" class="img" src="/images/Koala.jpg"&gt;&lt;/div&gt;
&lt;div style="width: 100px; height: 100px; margin-top: 10px; position: relative;"&gt;&lt;img style="width: 100px; height: 100px; position: relative;" class="img" src="/images/Lighthouse.jpg"&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div style="position: absolute; left: 978px; top: 223px; color: rgb(255, 255, 255);" id="next-btn"&gt;Next&lt;/div&gt;
&lt;div style="position: absolute; left: 8px; top: 223px; color: rgb(255, 255, 255);" id="prev-btn"&gt;Prev&lt;/div&gt;
</code></pre>
<p>What I am doing with the mask div is trying to get it to overlay the whole wrapper. So I set its width and height to the height of the wrapper. This works fine in firefox, chrome and safari. However, in internet explorer it is not working. Anyone know how I can make this overlay. I tried setting the position to absolute which worked fine except one thing. There is somethign that is going on top of this mask. Its position is relative. I set the one on top to a z-index of 1000 and the mask to 500, however it seems there is a bug in ie that automatically makes an absolute div be on top of everything. Any help is appreciated on how I can accomplish this.</p>
</summary>
Is this not correct?