CSS: Are repeating linear gradients supported for Internet Explorer?

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

+3
source share
1 answer

You might want to be careful with implementing repeating linear gradients, as they have some problems in different browsers. See Eric Meyer, write on this:

http://meyerweb.com/eric/css/tests/gradient-repeat.html

0
source

All Articles