/*覆盖半透明黑色*/
:after { /*父元素需要 position: relative;*/
content: '';
background: rgba(0, 0, 0, 0.38);
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
覆盖半透明黑色CSS,通常用于弹窗提示、弹窗显示大图等情况的背景图层
阅读 96
2022-12-22
/*覆盖半透明黑色*/
:after { /*父元素需要 position: relative;*/
content: '';
background: rgba(0, 0, 0, 0.38);
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
相关推荐
精彩评论(0)