text shadow around text in css3 code example
Example 1: text shadow css
.myClass{
/* x y blur color */
text-shadow: 1px 1px 0px #ff0000;
}
Example 2: css text shadow
text-shadow: x, y, blur, color;
.myClass{
/* x y blur color */
text-shadow: 1px 1px 0px #ff0000;
}
text-shadow: x, y, blur, color;