案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
h1 {
6
color:white;
7
text-shadow:2px 2px 4px #000000;
8
}
9
</style>
10
</head>
11
<body>
12
13
<h1>白色文本的阴影效果!</h1>
14
15
</body>
16
</html>
17