Color Gradients | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Color Gradients

[SOLVED] How do u make a color have a graident? not a background color. im trying to add an i class and color it with a gradient but it wont work

15th May 2022, 8:57 PM
Junior
Junior - avatar
5 Answers
+ 1
use css below: background-image: linear-gradient(orange,yellow); -webkit-background-clip: text; -webkit-text-fill-color: transparent; https://code.sololearn.com/WpWbTMzENToT/?ref=app
28th May 2022, 4:48 AM
Calviղ
Calviղ - avatar
+ 3
background-image: conic-gradient(lime, darkgreen,lime); For more information please see here: https://www.w3schools.com/css/css3_gradients.asp
15th May 2022, 9:19 PM
JaScript
JaScript - avatar
+ 1
Your Mom Review CSS tutorial 56.1, "Linear Gradients" I think you may find some tricks in there
15th May 2022, 10:28 PM
Rik Wittkopp
Rik Wittkopp - avatar
+ 1
ye i know what a gradient is and a linear gradient i was just wondering how to apply it onto color and not background. problem is solved though
15th May 2022, 10:29 PM
Junior
Junior - avatar
0
Adding an I class.... Hmmm It means you want to add an icon If you're adding a web icon... The icon style will be from the web not yours... Unless you copy the binaries... And set it's background color that's if you didn't pick a filled icon Or use an svg or png unfilled icon then style it's background with linear gradients.... Otherwise create and svg in the html using SVG tag
15th May 2022, 11:58 PM
Mikeey
Mikeey - avatar