CSS Conversions in IE7

Hi, I am using css transform in the scale property, my code is similar to this

-webkit-transform: scale(1.05); /* Safari and Chrome */ -moz-transform: scale(1.05); /* Firefox */ -o-transform: scale(1.05); /* Opera */ -ms-transform: scale(1.05); /* IE 9 */ transform: scale(1.05); 

The well-known answer is not supported in ie7 letyou here, answer me as soon as possible.

+4
source share
2 answers

I'm not sure I understand your question. CSS transforms are not supported in IE8 or earlier, where you need to use the IE matrix filter to achieve the same effect (scaling or rotation).

Similar to this (code for IE8 and older, check it in real time with IE8 or older at http://jsfiddle.net/thebabydino/5XdSy/ )

 filter: progid:DXImageTransform.Microsoft.Matrix( M11=1.05, M12=0, M21=0, M22=1.05, SizingMethod='auto expand'); 

In addition, your code is CSS, and you put it between div tags.

+4
source

Older IE browsers do not support CSS conversions. Try using polyfill as a Transformie .

+3
source

Source: https://habr.com/ru/post/1413151/


All Articles