Can anyone please help me to add shadow to this: http://jsfiddle.net/qzeohf20/3/
.rainbow {
font-size: 35px;
text-align: center;
margin-top: 50px;
margin-bottom: 50px;
padding: 10px;
font-family: Impact, Haettenschweiler, 'Franklin Gothic Bold', Charcoal, 'Helvetica Inserat', 'Bitstream Vera Sans Bold', 'Arial Black', 'sans serif';
background-image: -webkit-gradient( linear, left bottom, right top, color-stop(0, #C6781D), color-stop(1, #D1B72D) );
background-image: gradient( linear, left bottom, right top, color-stop(0, #C6781D), color-stop(1, #D1B72D) );
color:transparent;
-webkit-background-clip: text;
background-clip: text;
font-style:
}
And is it even possible?
I have already tried this: text-shadow: 1px 1px #000000;