CSS text-shadow property
Usage
Adds shadow to the text. Not generally supported.
Values
- none - default
- [color] - sets the shadow color
- [x-coord, y-coord, blur radius] - sets the x and y distances that the shadow should fall from the text, and the blur radius of the shadow
Example
Code:
h1 {
text-shadow: blue 10px 5px 2px;
}