css 文字设置投影或者阴影

   (1)text-shadow: 1px 1px 2px green; /*ff*/
   (2)filter: DropShadow(Color=green, OffX=1, OffY=2, Positive=true); /*阴影:IE都支持,ff和opera不支持*/

    (3)filter: Shadow(Color=red,Direction=180); /*投影:IE7以上都支持,IE6不支持*/

原文地址:https://www.cnblogs.com/dreamhouse/p/3111177.html