在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
我做错了什么?