views:

77

answers:

3

http://posterous.com/ If you look on the very bottom/right there is "API, Privacy, Terms"

They are "shadowed" text. And they have this indentation in them. Is there an easy open-source way to do this?

+7  A: 

It's CSS3:

text-shadow: 0px 1px 1px rgb(0, 0, 0);
graphicdivine
Explains why I didn't see anything special in IE7...
tijmenvdk
+1  A: 

They are using the CSS-Property text-shadow.

Bobby
+1  A: 

If you use a modern browser( Firefox + firebug, Safari on Mac, Chrome, Opera, IE8) you can right click on an element in a page and use the command called Inspect(vary from browser to browser).

You will see a table with all the CSS properties, the "text-shadow" in this case.

Mic