Use of Shadow Effects in div controls using CSS3

Create CSS property as below:

border:0px solid;
border-radius:20px;
-moz-border-radius:20px; /* Firefox 3.6 and earlier */
box-shadow: 5px 5px 5px #2D546F;
-webkit-box-shadow: 5px 5px 5px #2D546F; /* Safari */

use it in div class and enjoy

Comments