I know that IE 6-9 (and 10 ...) support linear gradients, but my question is, does it support repeating linear gradients like Firefox? Firefox example:
-moz-repeating-linear-gradient(left, #c5ccd4, #c5ccd4 0.31098em, #cbd2d8 0.31536em,
#cbd2d8 0.438em);
For the next equivalent IE equivalent, which can be added so that it repeats, if possible? IE:
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c5ccd4',
endColorstr='#cbd2d8',GradientType=0 );
thank
source
share