This is an old version of this answer!
Return to the current answertrying negative values fixes this
.mytopdiv {
position:relative;
z-index:-2222;
}
.mychilddiv {
position:absolute;
z-index:-1111;
}
if it doesn't then try this
body {
z-index:30000;
}
.mytopdiv {
position:relative;
z-index:-2222;
}
.mychilddiv {
position:absolute;
z-index:-1111;
}
if it doesn't then try this
body {
z-index:30000;
}
Ehthisham tk | 05/04/10 at 11:56am





