I have autoprefixer with the following options:
browsers: ['last 2 version'],
And the following css class:
background: -webkit-radial-gradient(center center, circle cover, rgba(0,0,255,1), rgba(255,255,255,0) 100%);
background: -ms-radial-gradient(center center, circle cover, rgba(0,0,255,1), rgba(255,255,255,0) 100%);
background: radial-gradient(center center, circle cover, rgba(0,0,255,1), rgba(255,255,255,0) 100%);
I have autoprefixer with the following options:
browsers: ['last 2 version'],
And the following css class:
autoprefixer removes
ms-radial
and does so even if I will add IE9. The problem is that even IE11 needs this prefix. Here is an example to test: http://jsfiddle.net/oj7fr558/1/ and without-ms-gradient
http://jsfiddle.net/oj7fr558/