CSS3 box shadow effect Examples




CSS3 box shadow effect Examples

<!DOCTYPE html>
<html>
   <head>
      <title>CSS3 box shadow effect Examples</title>
      <style type="text/css">      
         .box{
            width: 200px;
            height: 150px;
            background: red;
            box-shadow: 5px 5px 10px #999;
         }
      </style>
   </head>
   <body>
      <div class="box"></div>
   </body>
</html>

Output