CSS 3 box-shadow editor

Set the CSS position and length of the shadow under a photo or a text box. A margin may be included between the object and the shadow.


Parameters

Position:     Top     Bottom     Left     Right

Width of the shadow     Expansion of the shading

Internal margin     Color #

Spread radius, outer (positive) or inner (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]-->