Box-shadow editor in CSS 3

In CSS, define the position and length of the shadow below the photo or text box. You may be able to include space between the object and the shadow.


Parameters

Position :  Upper Lower Left Right         

Shadow width     Gradient intensity

Internal margin     Color #

Excess (positive) or deletion (negative)


CSS code to copy

<style type="text/css">
.shadow
{
	padding:0px;
	-moz-box-shadow:0px 0px 8px 0px #888888; 
	-webkit-box-shadow:0px 0px 8px 0px #888888; 
	box-shadow:0px 0px 8px 0px #888888; 
}
</style> 
<!--[if lte IE 8]>
<style type="text/css">
.shadow
{
	zoom: 1;
	filter: progid:DXImageTransform.Microsoft.Shadow(color='#888888', Direction=135, Strength=8);
}
</style> 
<![endif]-->