美文网首页
filter属性的使用

filter属性的使用

作者: 在小白的路上越走越远 | 来源:发表于2021-03-14 16:18 被阅读0次
    1. 适用场景,给三角形设置阴影。
    &::before{
      content:"";
      width:0px;
      height:0px;
      border-width:0px 10px 10px 0px;
      border-color: transparent #fff;
      border-style: solid;
      filter: drop-shadow(-2px 1px 1px rgba(0,0,0,0.2))
    }
    

    filter: drop-shadow(左右移动,上下移动,模糊程度,模糊色系)

    相关文章

      网友评论

          本文标题:filter属性的使用

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