📜  将图标颜色更改为渐变 css 代码示例

📅  最后修改于: 2022-03-11 14:47:53.588000             🧑  作者: Mango

代码示例1
.fa-gradient {
    background: -webkit-gradient(linear, left top, left bottom, from(#f00), to(#333));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}