使用css3给页面添加阴影效果

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

使用css3给页面添加阴影效果

<!doctype html>
<html>
<head>
<style type="text/css">
body:before {
          content: "";
          position: fixed;
          top: -10px;
          left: 0;
          width: 100%;
          height: 10px;
          -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
          -moz-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
          box-shadow: 0px 0px 10px rgba(0,0,0,.8);
          z-index: 100;
}
</style>
</head>
<body>
这是一个css3为页面添加阴影效果的例子!I love OutOfmemory.cn!
</body>
</html>