Answers for "how to text shadow in css"

CSS
0

font shadow css

.myClass{
  /*           x   y   blur color */
  text-shadow: 1px 1px 0px #ff0000;
}
Posted by: Guest on July-06-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