Answers for "how to make more than one shadow in text in css"

CSS
1

css how to add double shadow to text

p{
  text-shadow: 2px 2px 2px #ff0000, 4px 4px 2px #00ff00;
}
Posted by: Guest on March-26-2020
0

multiple text shadow

text-shadow: 2px 2px 1px red, 4px 4px 1px green, 6px 6px 1px blue;
Posted by: Guest on July-27-2021

Code answers related to "how to make more than one shadow in text in css"

Browse Popular Code Answers by Language