CSS
CSS 文本格式
添加文本阴影 - 这个例子演示了如何设置文本阴影。
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> h1 { text-shadow: 2px 2px #FF0000; } </style> </head> <body> <h1>Text-shadow 效果</h1> <p><b>注意:</b> Internet Explorer 9 以及更早的浏览器不支持 text-shadow 属性。</p> </body> </html>
运行结果:
点击运行 »