如何在 Stylus 中制作 rgba
how to make rgba in Stylus
大家好,我是 Stylus 新手,想知道如何制作 rgba 颜色
在 Less 你可以使用 fade(@color, 10%) 我如何用 Stylus?
更少
background-color: fade(#ccc, 10%);
就rgba()
:
background-color: rgba(#ccc, 10%);
大家好,我是 Stylus 新手,想知道如何制作 rgba 颜色
在 Less 你可以使用 fade(@color, 10%) 我如何用 Stylus?
更少
background-color: fade(#ccc, 10%);
就rgba()
:
background-color: rgba(#ccc, 10%);