Answers for "shadow in text"

CSS
2

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

css add a shadow beneath text

.red-text-shadow {
  text-shadow: red 0 5px;
}
Posted by: Guest on October-09-2020

Browse Popular Code Answers by Language