这是我的尝试:JSFIDDLE
因为我覆盖了一些现有的样式,所以我需要在我的后面添加一个半透明蒙版box
.box {
position:fixed;
background:red;
height:50%;
width:200px;
top:0;
left:0;
bottom:0;
right:0;
z-index:1000;
margin:auto;
}
.box:after {
content:"";
position:fixed;
top:0;
left:0;
bottom:0;
right:0;
background:rgba(255,255,255,0.8);
z-index:999;
}
看fiddle中的sample,不明白为什么box也被它的:after
style覆盖了?
感谢您的关注!