案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style> 
5
div
6
{
7
width:300px;
8
height:100px;
9
background-color:#ff9900;
10
-moz-box-shadow: 10px 10px 5px #888888; /* 老的 Firefox */
11
box-shadow: 10px 10px 5px #888888;
12
}
13
</style>
14
</head>
15
<body>
16
17
<div></div>
18
19
</body>
20
</html>
21