TIMEX
TIMEX

Reputation: 271764

How do I create the text like this website? (css/javascript)

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?

Upvotes: 0

Views: 128

Answers (3)

Mic
Mic

Reputation: 25164

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.

Upvotes: 1

Bobby
Bobby

Reputation: 11576

They are using the CSS-Property text-shadow.

Upvotes: 1

graphicdivine
graphicdivine

Reputation: 11211

It's CSS3:

text-shadow: 0px 1px 1px rgb(0, 0, 0);

Upvotes: 7

Related Questions