CSS ZOOM
This property controls the magnification level for the current element. The rendering effect for the element is that of a “zoom” function on a camera. Even though this property is not inherited, it still affects the rendering of child elements.
Example
1 2 3 | div { zoom: 200% } |
1 | <div style="zoom: 200%">This is x2 text</div> |
Possible Values
normal: No magnification is applied. The object is rendered as it normally would be.
[number]: Positive floating point number indicating a zoom factor. Numbers smaller than 1.0 indicate a “zoom out” or size reduction effect, while numbers greater than 1.0 indicate a magnifying effect.
[percentage]: Positive floating point number, followed by a percentage character (“%”) which indicates a zoom factor. Percentages smaller than 100% indicate a “zoom out” or size reduction effect, while numbers greater than 100% indicate a magnifying effect.


Pingback: Business Cards | Tom J Nowell
Pingback: Detecting Actual Window Size in IE When Using CSS3 Zoom Property - feed99
Pingback: Detecting Actual Window Size in IE When Using CSS3 Zoom Property video
Pingback: Zooming an element and its contents— an alternative to CSS3's zoom property? - Javascript Questions Solution - Developers Q & A