Return to Snippet

Revision: 65373
at November 25, 2013 16:59 by temanuel


Initial Code



Gradient Fill

-------------------------------------------------

(White at top, black at bottom)


background-image: -ms-linear-gradient(bottom, #000 0%, #fff 100%);
background-image: -moz-linear-gradient(bottom, #000 0%, #fff 100%);
background-image: -o-linear-gradient(bottom, #000 0%, #fff 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #000), color-stop(1, #fff));
background-image: -webkit-linear-gradient(bottom, #000 0%, #fff 100%);
background-image: linear-gradient(to top, #000 0%, #fff 100%);


TEXT-SHADOW (x-offset y-offset blur color)
-------------------------------------------------

text-shadow: 0px 0px 2px #000;

box-shadow: 0px 0px 2px #000;


Border Raidus

-------------------------------------------------

border-radius: 5px;

border-radius: 5px 5px 5px 5px;

Initial URL


Initial Description


Initial Title
CSS Gradient Shadow Radius

Initial Tags


Initial Language
Other