美文网首页
css 增加一个模糊遮罩效果

css 增加一个模糊遮罩效果

作者: 轩辕夜空 | 来源:发表于2022-07-20 06:47 被阅读0次
image.png

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;
  }
}

相关文章

网友评论

      本文标题:css 增加一个模糊遮罩效果

      本文链接:https://www.haomeiwen.com/subject/qtquirtx.html