groups

name language licence
Rgba CSS3 Other
Border-radius (rounded corners) CSS3 Other
Opacity CSS3 Other
Box-shadow CSS3 Other
Box Rotate Transform CSS3 Other
Box Gradient CSS3 Other
@font-face CSS3 Other
Speech Module CSS3 Other



language: CSS3
licence: Other

Box-shadow

options: view full snippetsend to code collector
/* the horizontal offset of the shadow, positive means the shadow will be on the right of the box, a negative offset will put the shadow on the left of the box; the vertical offset, a negative one means the box-shadow will be on top of the box, a positive one means the shadow will be below the box; the blur radius, if set to 0 the shadow will be sharp, the higher the number, the more blurred it will be. */

-moz-box-shadow: 0px 0px 4px #ffffff; /* FF3.5+ */
-webkit-box-shadow: 0px 0px 4px #ffffff; /* Saf3.0+, Chrome */
box-shadow: 0px 0px 4px #ffffff; /* Opera 10.5, IE 9.0 */
filter:  progid:DXImageTransform.Microsoft.dropshadow(OffX=0px, OffY=0px, Color='#ffffff'); /* IE6,IE7 */
-ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0px, OffY=0px, Color='#ffffff')"; /* IE8 */
	
(Continues...)