Simple CSS box-shadow - HTML CSS CSS Property

HTML CSS examples for CSS Property:box-shadow

Description

Simple CSS box-shadow

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials