Search code examples
jquerycssflipclock

-ms-zoom not working in IE 9


http://codepen.io/anon/pen/dhtAo

.container{
    zoom: 2 !important;
    -moz-transform: scale(2);
    -ms-zoom: scale(2);
    }

This code works well in FF and chrome. But in IE 9 only the text is scaled, not the clock. The clock is only shown if i remove the code above.

Anyone knows the reason and the solution for this problem?


Solution

  • IE9 doesn't support -zoom-. Use this instead. and test it in your browser and not codepen.

    -ms-transform: scale(2); /* IE */
    -ms-transform-origin: 0 0;