HTML CSS examples for CSS Widget:Image Shadow
Make shadows under images
<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>