css set font gradient color

background-image: linear-gradient(#FFFAE8, #F9C08E);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color:transparent; 
color: transparent;

explain:

background:linear-gradient(…) provides a gradient background to the element.

webkit-text-fill-color: transparent Fill text with transparent color.

webkit-background-clip: text clips the background with text and fills the text with the gradient background as color.
 

Guess you like

Origin blog.csdn.net/u014678583/article/details/129923144