Hola GG:
No sabía que no funcionaba z-index en explorer...
Se me ocurrió que al visualizar las cosas según el orden en el código, bastaría con variar ese orden.
Esta es una página con una funcioncita que hace eso:
Código PHP:
<html>
<head>
<title>
z-index
</title>
<script language=javascript>
function subir(esto) {
var nuevo = esto.cloneNode(true);
document.body.appendChild(nuevo);
document.body.removeChild(esto);
}
</script>
</head>
<BODY >
<div id=caja1
style="text-align:center; font-size: 30px; position: absolute;
top: 20; left: 20; width: 200; height:200; background-color: yellow"
onclick="subir(this)">
Simulador de z-index<br>por<br>Caricatos
</div>
<div id=caja2
style="text-align: left; font-size: 30px; position: absolute;
top: 50; left: 50; width: 200; height:200; background-color: red"
onclick="subir(this)">
Simulador de z-index<br>por<br>Caricatos
</div>
<div id=caja3
style="text-align: right; font-size: 30px; position: absolute;
top: 80; left: 80; width: 200; height:200; background-color: blue"
onclick="subir(this)">
Simulador de z-index<br>por<br>Caricatos
</div>
</body>
</html>
Saludos