我想实现for
但它在 IE8 中无效。我最近看到过滤器可以在 IE8 中运行但是这段代码运行不正常 IE8 。请为css建议适当的polyfill。
transform:rotate(310deg)
答案 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 */
请点击此处了解更多详情: