diese Situation gegeben:IE7 CSS z-index Overlay
HTML
<div class="container-module">
Some content.
<a id="show-overlay" href="#">Show overlay</a>
<div id="overlay">
Overlay content.
</div>
</div>
<div class="container-module">
Some content.
</div>
CSS
.container-module { height: 50px; z-index: 1; }
.overlay { background: white; display: none; height: 200px; z-index: 10; }
JS
getElementById("show-overlay").onclick(function(){
getElementById("overlay").style.display = "block";
return false;
});
... In IE7, wenn das Overlay gezeigt wird, deckt es den Inhalt des ersten Containers korrekt ab r Modul, aber der Inhalt im zweiten Containermodul zeigt "durch".
Hat jemand anderes dieses Verhalten festgestellt? Und gibt es empfohlene Lösungswege?
Danke!