Sass/Compass - Convert Hex, RGB, or Named Color to RGBA

前端 未结 5 2214
暖寄归人
暖寄归人 2020-12-04 14:59

This may be Compass 101, but has anyone written a mixin which sets the alpha value of a color? Ideally, I would like the mixin to take any form of color definition, and app

5条回答
  •  温柔的废话
    2020-12-04 15:53

    There's also ie-hex-str() for IE's ##AARRGGBB format:

    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str(#fdfdfd)}', endColorstr='#{ie-hex-str(#f6f6f6)}',GradientType=0); /* IE6-9 */
    

提交回复
热议问题