d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Computers & IT > Programming & Development > Css3 Linear Gradient > Compatible On Ie?
Add Reply New Topic New Poll
Member
Posts: 31,806
Joined: Jan 22 2008
Gold: 2,235.56
Jun 9 2012 11:51am
Anyone know how to make it works on ie?

here is the website :

http://www.decmultimedia.ca/10massea/ScierieLacSaintJean/Accueil.php?i=1
Member
Posts: 2,736
Joined: Nov 28 2009
Gold: 34.00
Jun 9 2012 08:31pm
Code
background: #decca4;
background: -moz-linear-gradient(left,  #decca4 35%, #ffffff 56%);
background: -webkit-gradient(linear, left top, right top, color-stop(35%,#decca4), color-stop(56%,#ffffff));
background: -webkit-linear-gradient(left,  #decca4 35%,#ffffff 56%);
background: -o-linear-gradient(left,  #decca4 35%,#ffffff 56%);
background: -ms-linear-gradient(left,  #decca4 35%,#ffffff 56%);
background: linear-gradient(left,  #decca4 35%,#ffffff 56%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#decca4', endColorstr='#ffffff',GradientType=1 );


Source: http://www.colorzilla.com/gradient-editor/
Guess what I googled? css3 gradients

Go Back To Programming & Development Topic List
Add Reply New Topic New Poll