天天看点

IE7下position的z-index Bug解决方案

通常设置position后,通过z-index属性来设置div的层叠情况。

但是在IE7中,设置position后,z-index会失效。导致div的层叠出现问题。

具体效果可以看这个页面

http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html

以下分别是IE7与IE8之间的差别:

IE7下position的z-index Bug解决方案
IE7下position的z-index Bug解决方案

请先认真看他们的HTML和CSS信息:

HTML结构 XHTML

1 2 3 4 <div id = "container" >      <div id = "box1" > This box should be on top </div> </div> <div id = "box2" > This box should not be on top; IE however seems to create a new stacking context for positioned elements, even when the computed z-index of that element is 'auto'. </div>

CSS

1 2 3 4 5 body { margin : 0 ; padding : 0 ; } #container { position : relative ; } #box1 { position : absolute ; top : 100px ; left : 510px ; width : 200px ; height : 200px ; background-color : yellow ; z-index : 20 ; } #box2 { position : absolute ; top : 50px ; left : 460px ; width : 200px ; height : 200px ; background-color : lime ; z-index : 10 ; } #content { width : 420px ; padding : 20px ; }

正常理解是应该显示上图右边的那种情况,但是IE7上的确是一件很怪异的事情,查了许多资料终于找到了解决方案:

http://brenelz.com/blog/squish-the-internet-explorer-z-index-bug/

In Internet Explorer positioned elements generate a new stacking context, starting with a z-index value of 0. Therefore z-index doesn’t work correctly. So we giving the parent element a higher z-index actual fixes the bug

以上告诉我们,IE设置了position的元素会生成一个新的stacking context,导致 z-index 为0,所以才失效了。所以我们需要在这个元素的父元素上设置一个更高的z-index值。

在上述的box1中的父元素container设置一个更大的z-index就能解决这个问题,如下:

CSS

1 #container { position : relative ; z-index : 30 ; }