-webkit-transform not working in Internet Explorer

Cartesius00 picture Cartesius00 · Jul 12, 2012 · Viewed 20.3k times · Source

I've found that -webkit-transform: rotateZ(10deg); doesn't work in Internet Explorer 9. What can be used instead of that using CSS3?

Answer

mgherkins picture mgherkins · Jul 12, 2012

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

As -webkitis also a vendor specific prefix, you'll have to add those for non-webkit browsers, too.

(like -ms, -moz, -o)

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