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 Gradient

options: view full snippetsend to code collector
background-image: -moz-linear-gradient(top, #444444 O%, #999999 100%); /* FF3.6 */
background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0%, #444444),color-stop(100%, #999999)); /* Saf4+, Chrome */
filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#444444', endColorstr='#999999'); /* IE6,IE7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#444444', endColorstr='#999999')"; /* IE8 */
	
(Continues...)