Answers for "text get shadow"

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 css

/*           x   y  blur color */
text-shadow: 1px 1px 1px  #000000;
Posted by: Guest on May-05-2021
1

text shadow effect

//offset 2px right and down with a 5px defusion of gray
h1 {
  text-shadow: 2px 2px 5px gray;
}
Posted by: Guest on June-30-2020

Browse Popular Code Answers by Language