css实现文字颜色渐变
background: linear-gradient(to bottom, #fff, #89D2FF);
/* 为了在较老的浏览器中呈现渐变效果,可以使用background-clip属性 */
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
实现效果
background: linear-gradient(to bottom, #fff, #89D2FF);
/* 为了在较老的浏览器中呈现渐变效果,可以使用background-clip属性 */
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
实现效果