Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS3 Box Shadow Effect</title> <style> .box{ width: 200px; height: 150px; background: #ccc; box-shadow: 5px 5px 10px #999; } </style> </head> <body> <div class="box"></div> </body> </html>