I would like to use the CSS3 property transform:scale.
div
{
transform: scale(0.5,0.5);
}
Is there a way to imitate this in Internet Explorer 8 and lower?
May be something with filter or a Javascript solution?
I’ve searched the web without any result.
Thanks a lot, Vincent
IE9 supports transform:
For other versions of IE, there’s a complex syntax. Something like this:
Look here for more info.