Vitaly Protasov
Vitaly Protasov

Reputation: 179

transform rotation in IE11

I try to write rotation preloader: http://codepen.io/davidchase/pen/qkKpx The problem is that is not working in IE11. there in code some

 -webkit-transform: rotate ...
 -moz-transform

I try to use -ms- but it still not working, how to fix that?

Upvotes: 0

Views: 215

Answers (1)

Niet the Dark Absol
Niet the Dark Absol

Reputation: 324820

Internet Explorer does not use a vendor prefix for transforms, except very briefly in (iirc) IE9 developer preview where it used -ms-.

Just do it without prefixes. This isn't 2006 anymore.

http://codepen.io/anon/pen/LNXQvY

Upvotes: 3

Related Questions