This is a cross-post of an article I wrote for the hacks.mozilla.org blog. It shows off some of the fun stuff web developers can do with the text-shadow feature that will be released as part of Firefox 3.5. The text-shadow CSS property does what the name implies: It lets you create a slightly blurred, slightly moved copy of text, which ends up looking somewhat like a real-world shadow. The text-shadow property was first introduced in CSS2, but as it was improperly defined at the time, its support was dropped again in CSS2.1. The feature was re-introduced with CSS3 and has now made it into Firefox 3.5 . How it Works According to the CSS3 specification, the text-shadow property can have the following values: none | [<shadow>, ] * <shadow>, <shadow> is defined as: [ <color>? <length> <length> <length>? | <length> <length> <length>? <color>? ], where the firs...