HTML CSS examples for CSS Property:box-shadow
Simple CSS box-shadow
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> .one {<!-- w ww.j a v a 2s. c om--> background:Chartreuse; height:100px; } .two { background:yellow; height:100px; box-shadow:0 0 6px blue; } .three { background:pink; height:6px; } </style> </head> <body> <div class="one"></div> <div class="two"></div> <div class="three"></div> </body> </html>