In IE7 browser, I just meet one issue about position. I made a demo page to test the position conditions of relative and absolute. There are the related codes below:

[CSS]

.rela{
    width:200px;
    height:100px;
    background:#EEE;
    margin-bottom:10px;
    position:relative;
}
.abs{
    width:50px;
    height:50px;
    position:absolute;
    background:#333;
    left:20px;
    top:80px;
    z-index:10;
}

[HTML]

<div class="rela"><div class="abs"></div></div>
<div class="rela"><div class="abs"></div></div>
<div class="rela"><div class="abs"></div></div>
<div class="rela"><div class="abs"></div></div>

Now, the problem is, in IE7 browser, the "abs" element is covered by the next "rela" element, but it displays well in other browsers like Firefox, chrome, IE8. I know somebody said that we can add a more higher z-index to the parent "rela" element, but for the codes above, the issue can't be fixed in this condition, coz there are more than two rela elements and all of them have the abs element.

I have no idea about how to fix it now. Also, if someone could kindly provide a official explanation about this "bug", it will be so good.

enter image description here

link|improve this question

80% accept rate
1  
Ah... IE. Microsoft MVPs in action. – Roko C. Buljan Dec 30 '11 at 14:02
add to .rela display:table; might work. untested – Roko C. Buljan Dec 30 '11 at 14:06
sorry, (only) adding display:table; to .rela doesn't work – scessor Dec 30 '11 at 14:22
display:table doesn't work. Also it will break the correct layout for other browsers. – init.Monk Dec 30 '11 at 14:24
feedback

5 Answers

up vote 1 down vote accepted

The same question was asked here.

Don't ask me why, but the last answer there seems to fix the problem (though you'll need jQuery or the like):

http://jsfiddle.net/Xmznn/1/

link|improve this answer
the js method can fix this issue, but I just wanna know if there is a way to do it with css only? – init.Monk Dec 30 '11 at 14:18
this way to travelsal all of the matched elements and set its z-index attribute with a lower value than its previous element. I don't think its a good way to fix it. – init.Monk Dec 30 '11 at 14:28
feedback

Give all divs with class rela an z-index, the first with the hightes till the one on the bottom with the lowest value.

<div class="rela" style="z-index: 40;"><div class="abs"></div></div>
<div class="rela" style="z-index: 30;"><div class="abs"></div></div>
<div class="rela" style="z-index: 20;"><div class="abs"></div></div>
<div class="rela" style="z-index: 10;"><div class="abs"></div></div>

Also see this example.

link|improve this answer
This is almost same as the "js solution", to set a lower value to the element than its previous one. But I don't think its a good way. – init.Monk Dec 30 '11 at 14:30
That's not nice, but I fear that it is the only option. – scessor Dec 30 '11 at 14:38
I also feel a little pessimistic that maybe there is no other way to fix it. – init.Monk Dec 30 '11 at 14:48
feedback

see the changes, it is working in IE 7

 .rela{
    width:200px;
    height:100px;
    background:#EEE;
    margin-bottom:10px;
}

.abs{
    width:50px;
    height:50px;
    background:#333;
    margin:80px 0 0 20px;
    z-index:0;
    position:absolute;
}
link|improve this answer
Remove the position:relative; from .rela will cause the .abs lost its reference point, so actually, all of the .abs elements are located at the same position. – init.Monk Dec 30 '11 at 14:41
did you test this code, because it is working properly for me in IE7, 8 and 9, Firefox, chrome, safari and Opera? – manny Dec 30 '11 at 14:46
I know, it looks that it works, but actullay, all of these four .abs are located at the same place, they are covered by each other. – init.Monk Dec 30 '11 at 14:51
till now you didn't test the code. .abs is not in the same place, margin:80px 0 0 20px will take care to position one after the other. – manny Dec 30 '11 at 14:55
oh, sorry, it's my fault.. it looks beautiful. But you know, if the height of the gray part is changeable. this way will be not suitable. – init.Monk Dec 30 '11 at 15:28
feedback

Try adding

z-index : 0;

To div.rela

link|improve this answer
sorry, it doesn't work for me. – init.Monk Dec 30 '11 at 14:03
1  
Or you could just make your site say "why IE?" whenever someone uses IE on it! Does it work on IE8+? I gave up trying with IE7, let alone 6! – Andrew Willis Dec 30 '11 at 14:07
yes, it works well on IE8+ and other browses. I have gave up IE 6&7 for my site. But it's a req of my company's project. – init.Monk Dec 30 '11 at 14:13
feedback

know issue and well documented out there. check - http://brenelz.com/blog/squish-the-internet-explorer-z-index-bug/

that might help you out.

link|improve this answer
uh, I found this site just now, its condition doesn't match mine, all of these elements need to fix this issue, if so, it equals to don't add a higher z-index to the parent elements. – init.Monk Dec 30 '11 at 14:17
no matter what, it comes down to the same bug. if you look at scessor's response, that will in fact work. – austin Dec 30 '11 at 16:01
yes, the "js solution" is the same thinking as scessor's solution. I think maybe this is the only way to fix this issue. Thanks so much. – init.Monk Dec 30 '11 at 16:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.