Text Shadow
A text shadow can be specified with text-shadow. Specifying the value as text-shadow: 10px 10px 10px darkgray, values are interpreted in the following order: horizontal offset of the shadow, vertical offset of the shadow, blur radius of the shadow, and shadow color. The blur radius of the shadow must be a non-negative value, and if the blur radius is 0 or is omitted, the shadow’s edge is sharp.
text-shadow: 8px 5px 0px green
Antenna House
text-shadow: 8px 5px 3px green
Antenna House
text-shadow: 8px 5px 6px green
Antenna House
**When an offset of the shadow is a negative value, the shadow is offset in the opposite direction. Multiple values can be specified to add additional shadows.**
text-shadow: -8px -5px 0px green
Antenna House
text-shadow: 10px 10px 0px green, 20px 20px 0px lightgreen
Antenna House
text-shadow: 10px 10px 2px green, 20px 20px 4px lightgreen
Antenna House