I have a problem, I want to add a border on my text with html, css or javascript. the size of the border should be 10px. Is this possible?
So it should be like this:

Hope you can help,
regards
chris
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As said, you could try this with
text-shadow, but it is not recommended. I edited Ankit’s solution, because it looked aliased:http://jsfiddle.net/ZnfED/1409/
As Eric Brockman says, you could use
text-stroke, but this is currently not supported by most browsers. It works on-webkit-prefixed browsers though.Here’s an example fiddle: http://jsfiddle.net/ZnfED/1410/
Note that
-webkit-text-fill-colorwill always overwritecolor, no matter what the order is in your CSS.