margin 负值引起的层级(z-index)问题

在希望的田野上,我们看到了希望,看到了未来,看到了祖国未来繁荣昌盛的景象。
先来看这么一段代码:
复制代码
代码如下:

<div style="height:100px;width:200px; border: solid 1px black; ">
<div style="background-color:Red;margin-top: -5px " mce_style="background-color:Red;margin-top: -5px ">
<a rel="nofollow noopener noreferrer" href="https://www.haodaima.com/" mce_rel="nofollow noopener noreferrer" href="https://www.haodaima.com/"></a></div>
</div>

IE6和IE7下,内层的容器被外层覆盖,如图所示:

在IE8和ff下,外层的容器被内层覆盖,如图所示:

真是疯狂啊,如果要达到IE8的外层的容器被内层覆盖的效果,ie7可以通过触发内层的layout解决,,但是IE6却不行,只能在内层使用position:relative来解决问题,当然position:relative也解决ie7的问题,因为position:relative本身就能触发layout。
看代码:
复制代码
代码如下:

<div style="height:100px;width:200px; border: solid 1px black; ">
<div style="background-color:Red;margin-top: -5px;position:relative" mce_style="background-color:Red;margin-top: -5px;position:relative">
<a rel="nofollow noopener noreferrer" href="https://www.haodaima.com/" mce_rel="nofollow noopener noreferrer" href="https://www.haodaima.com/"></a> </div>
</div>

当然要IE8、FF达到IE6、IE7的效果就只要在外层加overflow:hidden 就可以了,看代码
复制代码
代码如下:

<div style="height:100px;width:200px; border: solid 1px black; overflow:hidden ">
<div style="background-color:Red;margin-top: -5px;" mce_style="background-color:Red;margin-top: -5px;">
<a rel="nofollow noopener noreferrer" href="https://www.haodaima.com/" mce_rel="nofollow noopener noreferrer" href="https://www.haodaima.com/"></a> </div>
</div>

以上就是margin 负值引起的层级(z-index)问题。每天醒来,面朝阳光,嘴角上扬。不羡慕谁,不讨好谁,默默努力,活成自己想要的模样!更多关于margin 负值引起的层级(z-index)问题请关注haodaima.com其它相关文章!

标签: margin index