+ 3

how can i create multicolored text?

21st Mar 2018, 11:12 AM
Lika Julayidze
Lika Julayidze - avatar
4 Respostas
+ 2
You may try CSS Gradient if you want it just multicolored not single color each character //HTML <h1 class="colored"> TEXT HERE IS AWESOME</h1> //CSS .colored { background: linear-gradient(to right, Crimson, Indigo, LimeGreen, OrangeRed); background: -webkit-linear-gradient(to right, Crimson, Indigo, LimeGreen, OrangeRed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; -moz-background-clip: text; -moz-text-fill-color: transparent; }
21st Mar 2018, 12:00 PM
I Ketut Sistawan
I Ketut Sistawan - avatar
+ 16
U can get ur answer with codes as example here👇 https://www.sololearn.com/Discuss/1132863/?ref=app
21st Mar 2018, 12:58 PM
🌛DT🌜
🌛DT🌜 - avatar
+ 4
To create text with different colors, use the < font color=”color”> …< /font> tags for every character that you want to apply a color. You can use this tag combination as many times as needed, surrounding a single character or an entire word
21st Mar 2018, 11:20 AM
Nilesh
Nilesh - avatar
+ 3
@Nilesh thank you💟
21st Mar 2018, 3:13 PM
Lika Julayidze
Lika Julayidze - avatar