A Quick Note on Text Shadows
I was recently doing some work for a client and they had a menu that would appear over a background image. The background image would be different for each page. Unfortunately, the background image on some pages made the menu text difficult to read.
The designer thought it would be a good idea to have a drop shadow behind the text. This sounded good to me, except that I didn't know how to do that. Fortunately, it is really easy.
-moz-text-shadow: 2px 2px 1px black;
-webkit-text-shadow: 2px 2px 1px black;
text-shadow: 2px 2px 1px black;
Great point!
It actually worked on every browser I tests on, but I can't remember how far back I went on each version. Incidentally, Adobe's BrowserLab is really nice for this sort of thing