Hi Guys Please help me how to create shadow into inset of div in html. Thanks
set shadow inset div in html Anonymous User 2293 09 Mar 2013 Hi Guys Please help me how to create shadow into inset of div in html.Thanks
Hi Pravesh!
Used following css for set inner shadow of div
.shadow {-moz-box-shadow: inset 0 0 10px #000000;
-webkit-box-shadow: inset 0 0 10px #000000;
box-shadow: inset 0 0 10px #000000;
}