Adding an "inner glow" to a page with CSS - HTML CSS CSS Property

HTML CSS examples for CSS Property:box-shadow

Description

Adding an "inner glow" to a page with CSS

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">
html {<!-- w  w w  . jav a 2 s .c  om-->
   margin:0;
   padding:0;
   border:0;
   width:100%;
   height:100%;
   -moz-box-shadow:inset 0 0 11px Chartreuse;
   -webkit-box-shadow:inset 0 0 11px yellow;
   box-shadow:inset 0 0 11px blue;
}
</style> 
 </head> 
 <body>  
 </body>
</html>

Related Tutorials