|
wendigo27
Joined: Thu Aug 19, 2010 9:09 am Posts: 1
|
 Having a hard time with 3 color gradient
I am trying to implement the following gradient and using PIE in IE all I get is a big black blob rather than a 3 colors gradient as in Mozilla and Safari.
Can anyone help me see what I'm doing wrong here.
background: -webkit-gradient(linear,left bottom,left top,color-stop(0.2, rgb(2,23,40)),color-stop(0.56, rgb(9,67,98)),color-stop(0.81, rgb(13,84,122))); background: -moz-linear-gradient(center bottom,rgb(2,23,40) 20%,rgb(9,67,98) 56%,rgb(13,84,122) 81%); background: linear-gradient(center bottom,rgb(2,23,40) 20%,rgb(9,67,98) 56%,rgb(13,84,122) 81%);
|