CSS 中 text-shadow 属性的用法
javascriptweb developmentfront end scripts
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>