HTML CSS examples for CSS Property:box-shadow
Add shadow effects to elements
<html> <head> <style> div {<!-- w w w .ja va2 s . c o m--> width: 300px; height: 100px; padding: 15px; background-color: red; box-shadow: 10px 10px; } </style> </head> <body> <div>This is a div element with a box-shadow</div> </body> </html>