does anybody know how to get this

img.resizableImage:hover {
    -webkit-transform:scale(1.5);
    -moz-transform:scale(1.5);
    -o-transform:scale(1.5);
    opacity: 1;
}

working in Internet Explorer?

Already using the normalize css!

Thanks!

有帮助吗?

解决方案

All of your other transform properties are browser specific.

For IE9+:

-ms-transform: scale(1.5);
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top