示例中得效果是所期望的:.box元素在最上层显示,伪元素被遮挡在后面。效果是通过为伪元素的z-index设为负值实现的,但是当为.box添加一个z-indx属性时,它就会跑到最底层,而且把伪元素的z-index·设为正值,.box的z-index·设为更大的值也无法达到相同效果,Why?
1,当使用position和z-index之后会创建新的stacking context结构
2,创建stacking context之后,内部的元素的从后向前的创建顺序如下:
Within each stacking context, the following layers are painted in back-to-front order:
1,the background and borders of the element forming the stacking context.
2,the child stacking contexts with negative stack levels (most negative first).
3,the in-flow, non-inline-level, non-positioned descendants.
4,the non-positioned floats.
5,the in-flow, inline-level, non-positioned descendants, including
inline tables and inline blocks.
6,the child stacking contexts with stack level 0 and the positioned
descendants with stack level 0.
7,the child stacking contexts with positive stack levels (least
positive first).``
3,当z-index不为auto时,创建新的stacking context,此时.box的border和background是属于1所描述的情况,所以始终是在最下面的
4,当z-index不存在,此时不创建新的stacking context,此时.box的3这种情况。故当设置z-index小于0时,即前面的2,就可以使.box覆盖在伪元素之上啦
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。