Sean Anderson
Sean Anderson

Reputation: 29331

Emulating css zoom in IE8 - any jQuery libraries, polyfill, anything?

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':

enter image description here

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:

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

Answers (2)

Janne Aukia
Janne Aukia

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

yazz.com
yazz.com

Reputation: 58796

It is not possible. Several people have tried but they all fail to work in IE8:

  • Zoomooz
  • JSImpress
  • Zui53
  • Presenter.js

These and many others have tried and failed to make a cross platform zooming library

Upvotes: 2

Related Questions