Z-Index in IE8 gebrochen?

Dieser Code funktioniert in jedem anderen Browser, den ich ausprobiert habe, mit Ausnahme von IE8.

IE8 scheint den Z-Index zu ignorieren - und das Popup wird zu einem Popunder.

Es ist an der richtigen Stelle, wird nur unter dem Vorschaubild gerendert.

Jemand?

Vielen Dank!

HTML:

<a class="thumbnail" href="#thumb">
    <img src="comic_a3_thumb.jpg" height="300" width="212" border="0"
         style="float:right; margin-top:10px;margin-bottom:10px;"
         alt="description" />
    <span>
        <img src="/images/comic_a3_popup.jpg" />
    </span>
</a>

CSS:

.thumbnail{
    position: relative;
    z-index: 0;
}

.thumbnail:hover{
    background-color: transparent;
    z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
    position: absolute;
    background-color: lightyellow;
    padding: 5px;
    left: 0px;
    border: 1px dashed gray;
    visibility: hidden;
    color: black;
    text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
    border-width: 0;
    padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
    visibility: visible;
    top: -140px; /*position where enlarged image should offset horizontally */
    left: -500px;
}

Antworten auf die Frage(4)

Ihre Antwort auf die Frage