Das Problem ist so alt wie die Welt selbst, oder vielmehr wie IE6 und IE7, aber Sicherheitscode sozdaany andere, stieß diese Rechenund. Ich sah und fragte sich, bis ich merkte, es war ein Fehler IE.
CSS:
#bg_1 {
position: relative;
width: 100px; height: 100px;
background: blue;
}
#bg_2 {
position: relative;
width: 100px; height: 100px;
background: green;
}
#front_1 {
position: absolute;
width: 100px; height: 100px; left: 50px; top: 50px;
background: red;
}
HTML:
<div id="bg_1">
<div id="front_1"> Some text </div>
</div>
<div id="bg_2"></div>
IE6 | FF 3,6 |
IE 6,7 einen Fehler
CSS:
#bg_1 {
position: relative;
width: 100px; height: 100px;
background: blue;
}
#bg_2 {
position: relative;
width: 100px; height: 100px;
background: green;
}
#front_1 {
position: absolute;
z-index: 9;
width: 100px; height: 100px; left: 50px; top: 50px;
background: red;
}
IE6 | FF 3,6 |
Entscheidung
CSS:
#bg_1 {
position: relative;
width: 100px; height: 100px;
background: blue;
z-index: 9;
}
#bg_2 {
position: relative;
width: 100px; height: 100px;
background: green;
}
#front_1 {
position: absolute;
z-index: 9;
width: 100px; height: 100px; left: 50px; top: 50px;
background: red;
}
IE6 | FF 3,6 |
[1] z-index bug - http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html