For my understand. I need to put div 2 in front of div 3. How can I do this in IE6 and IE7. All of others browsers works normal. Here is my code.
CSS
div {
position:absolute;
}
#div1 {
background:#0F9;
top:0;
left:0;
width:500px;
height:400px;
}
#div2 {
background:#C00;
top:20px;
left:280px;
width:100px;
height:100px;
z-index:3;
}
#div3 {
background:#006;
top:10px;
left:10px;
width:300px;
height:200px;
z-index:2;
}
Código
<div id="div1">
<div id="div2"></div>
</div>
<div id="div3"></div>