CSS3转换属性Internet Explorer 10

时间:2013-12-10 14:34:39

标签: css3 transform explorer

在Internet Explorer 10中进行转换是否有问题?

我有这个简单的代码,我看不到效果(我有Internet Explorer 10)

这是CSS:

img:hover{
            -webkit-transform: scale(2.5,2.5);
            -moz-transform: scale(2.5,2.5);
            -o-transform: scale(2.5,2.5);
            -ms-transform: scale(2.5,2.5);
             transform: scale(2.5,2.5);
         }

这是HTML:

<img src="http://placekitten.com/200/125" alt="Castillo Valencia de Don Juan">

您可以看到示例here

我做错了什么?

0 个答案:

没有答案