用css實現文字字體顏色漸變
background-clip 是CSS3中新增的屬性,可以用于指定背景圖片或顏色的繪制范圍。利用 background-clip 屬性實現文字顏色從左到右、從綠到白的漸變效果:
代碼如下:
.gradient-color {background-image: linear-gradient(to right, green, white);background-clip: text;-webkit-background-clip: text;-webkit-text-fill-color: transparent;
}
漸變效果如下: