bonjour
Voila je un petit problème avec compass j'utilise set fonction :
@include background(linear-gradient(top,darken($color,25%),$color));
et sa fonctionne presque comme je veux :
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bfbfbf), color-stop(100%, #ffffff));
background: -webkit-linear-gradient(top, #bfbfbf, #ffffff);
background: -moz-linear-gradient(top, #bfbfbf, #ffffff);
background: -o-linear-gradient(top, #bfbfbf, #ffffff);
background: linear-gradient(top, #bfbfbf, #ffffff);
Le petit problème et que il me rajoute pas le -ms-
Et se que il y a un moyen de rajouter le -ms- au linear-gradient automatiquement avec compass ?
Dommages sa marche pas avec le linear-gradient
je du utiliser un code comme :
background: -ms-linear-gradient(top,darken($color,25%),$color);
@include background(linear-gradient(top,darken($color,25%),$color));