HTML CSS examples for CSS Property:box-shadow
Drop shadow only bottom css3
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> body {<!-- w ww.ja v a 2 s .c o m--> background:white } div { width:100px; height:100px; margin:51px; border:2px solid Chartreuse; box-shadow:-7px 0 white, 7px 0 white, 0 8px 6px -3px black; } </style> </head> <body> <div> </div> </body> </html>