Stefan: z-index bei Netscape 4.x (DIV) fiunltioniert nicht !(?)

Beitrag lesen

Hallo (und guten Abend),

habe zwei DIV, welche überlappend sein sollen - ich bekomme es aber einfach nicht hin (Netscape 4.x):

<div id="thema"><img src="../img/thema_ja.gif" width="149" height="17"></div>

Das dazugehörige CSS:

#thema {
 z-index: 8;
 position: absolute;
 top: 105px;
 left: 10px;
 width: 149px;
 height: 17px
}

-----------------------------------------------------------------------------
Dieses DIV-Element soll folgendes DIV überlappen (im Vordergrund stehen):

<div id="dreid"><img src="../img/3d_javas.jpg" width="734" height="88"></div>

Das dazugehörige CSS:

#dreid {
 position: absolute;
 top: 60px;
 left: 20px;
 width: 742px;
 height: 88px
}

Wisst ihr eine Lösung?

Stefan