Make shadows under images - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Image Shadow

Description

Make shadows under images

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">
img {<!--from   w w  w . j  a  v  a  2 s  .c  om-->
   box-shadow:11px 11px 11px Chartreuse;
}
</style> 
 </head> 
 <body> 
  <img src="https://www.java2s.com/style/demo/Firefox.png">  
 </body>
</html>

Related Tutorials