css实现渐变色字体

代码如下
// 渐变色字体
background-image: linear-gradient(#2de2ff,#8b67fb);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
微信扫一扫

代码如下
// 渐变色字体
background-image: linear-gradient(#2de2ff,#8b67fb);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
相关推荐