CSS box-shadow property adjustment - HTML CSS CSS Property

HTML CSS examples for CSS Property:box-shadow

Description

CSS box-shadow property adjustment

Demo Code

ResultView the demo in separate window


<html>
 <head> 
  <title>Lorem i</title> 
  <style>
.the-box {<!--  w w  w .  jav  a 2  s .  c o  m-->
   background-color:Chartreuse;
   border-radius:11px 11px 11px 11px;
   box-shadow:3px 3px 11px 0px yellow;
   width:519px;
   height:331px;
   margin-top:11%;
   margin-left:auto;
   margin-right:auto;
}
</style> 
 </head> 
 <body> 
  <div class="the-box"> 
  </div>  
 </body>
</html>

Related Tutorials