Answers for "how to add shadow to h1 text"

CSS
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
-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