0
How do i make a rainbow sentence?
I really want to make a rainbow sentence but I can't figure it out.
1 Antwort
+ 3
You can use javascript to color every letter or word differently.
If you want to use html/css the best you can do is use this
{
background: linear-gradient(to right, red,orange,yellow,green,blue,indigo);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
but it will only work on webkit browsers