<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
.fl{position:absolute;width:200px;height:200px;margin:30px;background:yellow;}
.ac{position:absolute;width:300px;height:300px;border:1px solid;background:red;z-index:1000;}
</style>
</head>
<body>
<div class="fl"><div class="ac">为什么在ie下黄色把红色盖住了呢?该如何修改使红色盖住黄色</div></div>
<div class="fl"></div>
</body>
</html>
如何修改,能是ie下能像ff下一样
这是IE的ZIndexStack的BUG,ac的zindex是从他的容器DIV开始算的,只能尽量避免这种DOM结构了
IE的BUG吧。
把out2放到前面就可
<div class="out2">out2</div>
<div class="out1">out1<div class="in">为什么在ie下out1的红色没有把out2盖住。在ff下就可以。</div></div>