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.
source share