美文网首页
@mixin方式切换边框颜色

@mixin方式切换边框颜色

作者: 小豌豆书吧 | 来源:发表于2017-10-12 16:42 被阅读0次

    效果图:

    效果图.jpg
    /*小三角颜色变化 .scss*/
    $list: #1AA818 #D50806 #FF7301;
    $len: length($list);
    //调用:
    @for $i from 1 through $len{
      .promotion-word .triangle#{$i}{
        border-top-color: nth($list,$i);
      }
    }
    

    相关文章

      网友评论

          本文标题:@mixin方式切换边框颜色

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