TEXT-SHADOW Property In CSS
text-shadow Property in CSS
text-shadow property Declares shadow effects on the text.
Possible Value:
A list containg a color followed by numeric values (separated by spaces) that specify: The color for the shadow effect Horizontal distance to the right of the text Vertical distance below the text Blur radius
Examplediv { text-shadow:green 2px 2px 7px; }
div { text-shadow:olive -3px -4px 5px; }