How do I make a text have more than one color in html, like the text in this code | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How do I make a text have more than one color in html, like the text in this code

Text multi-color application https://code.sololearn.com/W5pHxlSxk9RW/?ref=app

16th May 2023, 10:21 AM
sanni olamide
sanni olamide - avatar
7 Answers
+ 4
Do you know how you did the other colours changing? (And if not, can you please cite where you copied your code from, otherwise it's plagiarism) It's a similar idea. https://code.sololearn.com/WNb3T0Msn5R9/?ref=app
16th May 2023, 10:45 AM
Ausgrindtube
Ausgrindtube - avatar
+ 3
h1{ animation: colorchange 9s infinite ; font-size:80px; background-clip: text; -webkit-background-clip: text; text-fill-color: transparent; -webkit-text-fill-color: transparent; } use this style for h1 EXPLANATION: 1. background-clip property: The background-clip property determines how the background of an element should be clipped or displayed. default value is border-box 2. text-fill-color property: The text-fill-color property sets the color to fill the text content of an element. default value is black.
16th May 2023, 10:50 AM
I am offline
I am offline - avatar
+ 2
Ausgrindtube The code covers basic fundamental that can be found in many online tutorials like this for example. https://www.w3schools.com/css/css3_animations.asp.
16th May 2023, 6:13 PM
Chris Coder
Chris Coder - avatar
+ 2
sanni olamide Mirielle's suggestion to use javascript to break your text to spans, you can also assign animated class to each span to create custom color animation for each letter. https://code.sololearn.com/WMjNKFMebf21/?ref=app
17th May 2023, 1:42 PM
Bob_Li
Bob_Li - avatar
+ 2
How do i add create new e-comerce to my e comerce store for someone to create new comerce from my page?
17th May 2023, 8:54 PM
Etteh Edem
+ 1
sanni olamide Do you want each character in the heading to change color or do you want the entire heading to change color?
16th May 2023, 6:16 PM
Chris Coder
Chris Coder - avatar
+ 1
Yes, each characters.
17th May 2023, 10:22 AM
sanni olamide
sanni olamide - avatar