Reputation: 29331
I'm picking up where another SO user's question went unresolved a few years ago: IE8 doesn't zoom content when applying a CSS zoom value to a DIV
Here's the example: http://jsbin.com/exicel
and here's how it looks under IE8 and Chrome after pressing 'Zoom Out':
Clearly Chrome scales everything to fit as appropriate. IE8 isn't a cool enough kid to do so, apparently.
Any decent workarounds for this? I'm playing around with zooming on the parent in IE8, but that's causing other issues in my layout.
I've tried:
Scaling using DXImageTransform:
$('.rackContentWrapper').css({
'filter': 'progid:DXImageTransform.Microsoft.Matrix(M11=' + zoomValue + ', M12=0, M21=0, M22=' + zoomValue + ', SizingMethod="auto expand")',
});
This completely slaughters text while having the same issues as just scaling with CSS zoom.
So... this has to be doable, right? Maybe there is a library out there to handle this?
Upvotes: 2
Views: 1729
Reputation: 1022
Some people have been successful at getting ms-zoom css property working, see: How can I scale the content of an iframe?
Upvotes: 0
Reputation: 58796
It is not possible. Several people have tried but they all fail to work in IE8:
These and many others have tried and failed to make a cross platform zooming library
Upvotes: 2