Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

-webkit-transform not working in Internet Explorer

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

like image 315
Cartesius00 Avatar asked Jul 12 '12 20:07

Cartesius00


People also ask

Can I still use Internet Explorer after June 2022?

After the IE11 desktop application is retired and goes out of support on June 15, 2022, the IE desktop application will be progressively redirected to Microsoft Edge over the following months, and ultimately disabled via Windows Update, to help ensure a smooth retirement.


2 Answers

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/

like image 150
mgherkins Avatar answered Oct 27 '22 01:10

mgherkins


3D transforms don't work in IE9. IE10 does support them, though.

Here's a chart of supported browsers: http://caniuse.com/transforms3denter image description here

like image 43
ThinkingStiff Avatar answered Oct 27 '22 01:10

ThinkingStiff