How can we make paragraph/headline text gradient? when we try to make text gradient, entire section become gradient, we only want the text to be gradient
please may you have css code
How can we make paragraph/headline text gradient? when we try to make text gradient, entire section become gradient, we only want the text to be gradient
please may you have css code
Hello there,
I got a clear idea about this issue. You can simply add a class named gradient-text
to your heading or paragraph and use the following CSS to make it work:
.gradient-text {
font-size: 3em;
font-weight: bold;
background: linear-gradient(90deg, #ff7e5f, #feb47b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}```