美文网首页
Less语言特性 - 混合参数

Less语言特性 - 混合参数

作者: 张中华 | 来源:发表于2021-07-25 07:11 被阅读0次

    参数mixin使用一个或多个参数,通过参数和其属性来扩展LESS的功能,以便在混合到另一个块时自定义mixin输出。

    示例

    .border(@width; @style; @color) {
        border: @width @style @color;
    }
    
    .myheader {
        .border(2px; dashed; green);
    }
    

    相关文章

      网友评论

          本文标题:Less语言特性 - 混合参数

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