您可以使用从 IE 9 开始弃用的矩阵过滤。此外,正如他们在此链接上提到的:http: //msdn.microsoft.com/en-us/library/ms533014 (v=vs.85).aspx
Resizes, rotates, or reverses the content of the object using matrix transformation.
这是另一个让您更轻松的链接:http:
//www.boogdesign.com/examples/transforms/matrix-calculator.html
90度旋转示例:
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.00000000, M12=-1.00000000, M21=1.00000000, M22=0.00000000,sizingMethod='auto expand')";
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.00000000, M12=-1.00000000, M21=1.00000000, M22=0.00000000,sizingMethod='auto expand');
-moz-transform: matrix(0.00000000, 1.00000000, -1.00000000, 0.00000000, 0, 0);
-webkit-transform: matrix(0.00000000, 1.00000000, -1.00000000, 0.00000000, 0, 0);
-o-transform: matrix(0.00000000, 1.00000000, -1.00000000, 0.00000000, 0, 0);