xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS3盒子阴影效果示例 - div.cn 基础教程</title>
<style>
.box{
width: 200px;
height: 150px;
background: #ccc;
box-shadow: 5px 5px 10px #999;
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>