美文网首页
less把rgb,rgba的值转换,十六进制的颜色值

less把rgb,rgba的值转换,十六进制的颜色值

作者: 天劫天罪 | 来源:发表于2019-10-09 11:27 被阅读0次

解决办法:less 高阶函数 argb

rgba(255, 255, 255, 0.7)

a{

        color:argb(rgba(255, 255, 255, 0.7));

    }

less编译后:

.img-size-test a {

  color: #b3ffffff;

}

rgb在less里面可以直接编译为十六进制的颜色值

a{

        color:rgb(255, 255, 255);

    }

less编译以后:

a {

  color: #ffffff;

}

相关文章

网友评论

      本文标题:less把rgb,rgba的值转换,十六进制的颜色值

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