CSS中text-shadow属性的用法

文字阴影属性用来围绕着一个文本的文本阴影。您可以尝试运行以下代码来设置text-shadow属性:

示例

<html>
   <head>
   </head>
   <body>
      <p style = "text-shadow:3px 2px 5px red;">
         If your browser supports the CSS text-shadow property, this text will have a red shadow.
      </p>
   </body>
</html>