其他分享
首页 > 其他分享> > css 增加一个模糊遮罩效果

css 增加一个模糊遮罩效果

作者:互联网

css 增加一个模糊遮罩

html

<div class="zhezhaox">
  <div class="zhezhaox2"></div>
</div>

css

.zhezhaox {
  position: relative;
  padding: 1px;
  .zhezhaox2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    z-index: 1000;
  }
}

标签:遮罩,right,模糊,relative,position,css,255
来源: https://www.cnblogs.com/wanjunshijie/p/16500551.html