Question

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!

Was it helpful?

Solution

All of your other transform properties are browser specific.

For IE9+:

-ms-transform: scale(1.5);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top