Answers for "online gradient text color css"

CSS
1

gradient text color css

h4 {
background: linear-gradient(to right, #494964, #6f6f89);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;}
Posted by: Guest on October-18-2020
0

Color gradient for text

.text {
  background-clip: text;
  -webkit-background-clip: text;
  color: rgba(0,0,0,.2);
}
Posted by: Guest on December-20-2021

Browse Popular Code Answers by Language