Answers for "how to add more than one shadow text in css3"

CSS
2

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
1

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 add more than one shadow text in css3"

Browse Popular Code Answers by Language