문제

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