我想使用CSS3属性transform:scale。
div { transform: scale(0.5,0.5); }
有没有办法在Internet Explorer 8及更低版本中模仿它?可能与filterJava解决方案有关?
filter
我在网上搜索没有任何结果。
非常感谢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);