How to add Shadow on Text property using css3

if your design have any text shadow decoration, and you want to convert it into html and css3. Use this code to add these effect font border or font shadow.


the code:
#element{
  text-shadow: 0 0 2px #000; /* horizontal-offset vertical-offset 'blur' colour */
  -moz-text-shadow: 0 0 2px #000;
  -webkit-text-shadow: 0 0 2px #000;
}

0 komentar: