CSS3转换:IE中的缩放
我想使用CSS3属性transform:scale。
div{
transform: scale(0.5,0.5);
}
有没有办法在Internet Explorer 8及更低版本中模仿它?可能与filter
Java解决方案有关?
我在网上搜索没有任何结果。
非常感谢Vincent
回答:
IE9支持转换:
-ms-transform: scale(0.5,0.5);
对于其他版本的IE,存在复杂的语法。像这样:
filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1.5320888862379554, M12=-1.2855752193730787,
M21=1.2855752193730796, M22=1.5320888862379558);
以上是 CSS3转换:IE中的缩放 的全部内容, 来源链接: utcz.com/qa/409376.html