PIE.htc, border-radius et gradient
Bonjour à tous !
J'ai ce code :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| .les_blocs {
width:267px;
height:272px;
color:#000000;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
background: #ffb12c;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#ffb12c), to(#ff5d19));
background: -webkit-linear-gradient(#ffb12c, #ff5d19);
background: -moz-linear-gradient(#ffb12c, #ff5d19);
background: -ms-linear-gradient(#ffb12c, #ff5d19);
background: -o-linear-gradient(#ffb12c, #ff5d19);
background: linear-gradient(#ffb12c, #ff5d19);
-pie-background: linear-gradient(#ffb12c, #ff5d19);
behavior: url(PIE.htc);
margin-right:30px;
float:left;
} |
que j'ai pu récupérér là ==> http://css3pie.com/ (pour faire mes arrondis et gradient sous ie)
Sauf que le gradient n'est absolument pas pris en compte sous ie 9, 8 et 7
seul le
Code:
background: #ffb12c;
s'affiche
Bref, je tourne en rond! Et j'ai testé d'autre truc, sans résultat !
Quelqu'un pourrait il m'aider?
Merci ;)