CSS 参考手册
CSS3 text-shadow 属性
- 白色文字上的文字阴影 - 这个例子演示了一个白色的文本文字阴影。
源代码:
点击运行 »
<html> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> h1 { color: white; text-shadow: 2px 2px 4px #000000; } </style> </head> <body> <h1>Text-shadow on white text</h1> <p><b>注意:</b>IE 9及更早版本的浏览器不支持text-shadow属性.</p> </body> </html>
运行结果:
点击运行 »