Add A Drop Shadow Css Code Example


Example: image shadow css

<!Doctype> <html> <head>   <style>     .img {       width: 400px;       height: 200px;       border:2px solid #fff;       background: url(img/tiger.png) no-repeat;       box-shadow: 10px 10px 5px #ccc;       -moz-box-shadow: 10px 10px 5px #ccc;       -webkit-box-shadow: 10px 10px 5px #ccc;       -khtml-box-shadow: 10px 10px 5px #ccc;     }   </style> </head> <body>   <div class="img"></div> </body> </html>

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android SDK Location Should Not Contain Whitespace, As This Cause Problems With NDK Tools