I'm trying to modify the text's color when hover with multiple color transitions but I can only change one color. Here is my CSS snippet.
#text {font:9px 'Arial'; color:#000000; transition-duration: 3s;}
#text:hover {color:#FFFFFF;}
Not just #000000
to #FFFFFF
, but #000000
→#FF0000
→#0000FF
→#FFFFFF
How to have multiple CSS color transitions on a single text line?