Faced such a problem, in Line 11 a linear gradient does not work, here’s the code

ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0984c2', endColorstr='#0d72b9'); background: -webkit-linear-gradient(#0984c2, #0d72b9); background: -moz-linear-gradient(#0984c2, #0d72b9); background: -o-linear-gradient(#0984c2, #0d72b9); background: -ms-linear-gradient(#0984c2, #0d72b9); background: linear-gradient(#0984c2, #0d72b9); 

the gradient is simply not drawn. Can anyone come across a similar problem.

Even in version 11, the transform property does not work, here’s the code

 -webkit-transform: rotate3d(0, 0, 1, 225deg); -ms-transform: rotate3d(0, 0, 1, 225deg); -moz-transform: rotate3d(0, 0, 1, 225deg); -o-transform: rotate3d(0, 0, 1, 225deg); transform: rotate3d(0, 0, 1, 225deg); 

I was prompted that 3d does not work in IE. What advise in this case? 3d will not exactly clean up, because with the addition of the third dimension, the quality of drawing is improved

    1 answer 1

    1) Put at the end of the class and / or block:

     ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0984c2', endColorstr='#0d72b9'); 

    2) Try to put this meta :

      <meta http-equiv="X-UA-Compatible" content="IE=9;IE=10;IE=Edge,chrome=1"/>