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