Possible Duplicate:
CSS Font Border?
Is it possible to set a 'text-border' with CSS?
Best would be to have multiple borders? something like on the image
Possible Duplicate:
CSS Font Border?
Is it possible to set a 'text-border' with CSS?
Best would be to have multiple borders? something like on the image
Well you could try a font shadow. Something with multiple borders might have to be done with an image though.
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
I think you may want to take a look at CSS text-shadow
http://www.quirksmode.org/css/textshadow.html
You cannot achieve multiple borders but you can do some amazing things with it:
http://line25.com/articles/using-css-text-shadow-to-create-cool-text-effects
(i love that neon effect :)
You could simulate stroked text as in this previous answer:-