即使在实现过滤器之后,css变换旋转也不在ie8中工作

时间:2015-11-16 16:36:26

标签: css internet-explorer-8

我想实现for但它在 IE8 中无效。我最近看到过滤器可以在 IE8 中运行但是这段代码运行不正常 IE8 。请为css建议适当的polyfill。

transform:rotate(310deg)

1 个答案:

答案 0 :(得分:1)

要在IE中旋转45度,您需要在样式表中使用以下代码:

filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476); /* IE6,IE7 */
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"; /* IE8 */

请点击此处了解更多详情:

https://stackoverflow.com/a/4617511/2161568