Answers for "how do i put more than 1 text shadow in css"

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 do i put more than 1 text shadow in css"

Browse Popular Code Answers by Language