css3属性text-shadow
css3文字阴影。
text-shadow: h-shadow v-shadow blur color;
h-shadow | Required. The position of the horizontal shadow. Negative values are allowed | Play it » |
v-shadow | Required. The position of the vertical shadow. Negative values are allowed | Play it » |
blur | Optional. The blur distance | Play it » |
color | Optional. The color of the shadow. Look at CSS Color Values for a complete list of possible color values |
第一个参数是水平移动距离的数值,即时文字的阴影偏离原来的文字水平方向位置。
第二个参数是竖直移动距离的数值,既是文字的阴影偏离原来的文字竖直方向的位置。
第三个是阴影的大小,既是文字的宽度,默认是原来的文字。
第四个则是阴影显示的颜色。默认是原来文字的颜色。
文章部分参考:http://www.w3schools.com/cssref/css3_pr_text-shadow.asp
在线演示:http://www.w3schools.com/cssref/tryit.asp?filename=trycss3_text-shadow_blur
更多示例:http://www.w3.org/Style/Examples/007/text-shadow.en.html