Answers for "how to add two text shadow 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
1

how to add 2 text shadows

p {
  text-shadow: 1px 1px 1px #000, 3px 3px 5px blue; 
}
Posted by: Guest on April-07-2020

Browse Popular Code Answers by Language