Skip to content Skip to sidebar Skip to footer

IE8 CSS Rotation

I'm looking for CSS solution for rotating elements in IE8. Some of solutions I've found say that it should work in IE8, but it does not for me. What I do wrong? Here is what I trie

Solution 1:

You are missing IE vendor prefix -ms-

filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);

So, Use this

-ms-filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); /* for IE8 */

Also look at this question: CSS rotate property in IE that might help you


Solution 2:

Well, I dont think the filters for rotation work in a elegant way in IE8. I also tried that, but it didnt work for me properly. I tried using jquery rotate plugin. You can try that out - http://code.google.com/p/jqueryrotate/

I have a issue even with that going on (jQueryRotate - Issue in IE8), but it might help you, just in case.


Post a Comment for "IE8 CSS Rotation"