i need css transform work on ie8, is there possible to do that?
i tried progid:DXImageTransform but it is not working on pseudo element
.stack.twisted:before {
-ms-transform:rotate(8deg); /* IE 9 */
-webkit-transform: rotate(8deg);
-moz-transform: rotate(8deg);
transform: rotate(8deg);
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=-0.70710678, M21=0.70710678, M22=0.70710678,sizingMethod='auto expand')";filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=-0.70710678, M21=0.70710678, M22=0.70710678,sizingMethod='auto expand');
}
to make it clear, i need rotate effect like transform in css3 work in ie8. So i found progid:DXImageTransform.Microsoft.Matrix but it doesn't work in pseudo element. Is there other way to do that?
There are a lot of solutions with some really cool libraries, but I needed to handle the same problem with a small stand-alone snippet of code. This also solves the ie6,ie7 & ie8 problem of matrix transforms using Top/Left as the origin instead of the center as it is with all others: