CSS3 Gradient Generator
background-image: linear-gradient(bottom, #D9623D 3%, #B03039 42%);
background-image: -o-linear-gradient(bottom, #D9623D 3%, #B03039 42%);
background-image: -moz-linear-gradient(bottom, #D9623D 3%, #B03039 42%);
background-image: -webkit-linear-gradient(bottom, #D9623D 3%, #B03039 42%);
background-image: -ms-linear-gradient(bottom, #D9623D 3%, #B03039 42%);

background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.03, #D9623D),
color-stop(0.42, #B03039)
);
CSS  Gradients 
february 2012
CSS3 Gradient Generator
background-image: linear-gradient(bottom, rgb(26,73,139) 24%, rgb(15,43,82) 81%);
background-image: -o-linear-gradient(bottom, rgb(26,73,139) 24%, rgb(15,43,82) 81%);
background-image: -moz-linear-gradient(bottom, rgb(26,73,139) 24%, rgb(15,43,82) 81%);
background-image: -webkit-linear-gradient(bottom, rgb(26,73,139) 24%, rgb(15,43,82) 81%);
background-image: -ms-linear-gradient(bottom, rgb(26,73,139) 24%, rgb(15,43,82) 81%);

background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.24, rgb(26,73,139)),
color-stop(0.81, rgb(15,43,82))
);
Css  Gradients 
february 2012
« earlier      

Copy this bookmark:



description:


tags: