-webkit-transform does not work in Internet Explorer

I found that it -webkit-transform: rotateZ(10deg);doesn’t work in Internet Explorer 9. What can I use instead with CSS3?

+5
source share
3 answers

Have you tried -ms-transform:rotateZ(10deg);?

Since -webkitit is also a prefix for a specific provider, you will also have to add it for non-website browsers.

(e.g -ms. -moz,, -o)

Check out this CSS3 3D Transforms tutorial for more information: http://www.pageresource.com/css3/3d-transforms-tutorial/

+10
source
+2

you can use 2D transforms in ie9 - that is:

-ms-transform: rotate(25deg);
+1
source

All Articles