Answers for "rainbow animated text html"

CSS
0

rainbow text with css

.rainbow-text {
  background-image: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
  -webkit-background-clip: text;
  color: transparent;
}
Posted by: Guest on October-20-2021

Browse Popular Code Answers by Language