Domanda

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!

È stato utile?

Soluzione

All of your other transform properties are browser specific.

For IE9+:

-ms-transform: scale(1.5);
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top