Answers for "how to create a shadow behind the text css"

CSS
4

css text shadow

p{
  /* text-shadow: x y blur spread color */ 
  text-shadow: 2px 2px 5px 5px #f00;
}
Posted by: Guest on June-14-2021
2

text shadow

text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
Posted by: Guest on July-03-2020

Browse Popular Code Answers by Language