158) for more information on IE and layout.
Vendor-specific Properties
379 Vendor-specific Properties
Internet Explorer Extensions
These are some of the CSS extensions available for Internet Explorer.
The Ultimate CSS Reference 380
zoom
zoom: { number | percentage | normal } ;
Internet Explorer for Windows versions
5.5 and above support the non-standard
property zoom,19 which sets the
magnification scale of an element.
There??™s no CSS3 equivalent to this
property (as yet).
The zoom property isn??™t inherited, but
it will affect the children of the element
to which it is applied, which will be
SPEC
version initial inherited
N/A normal NO
BROWSER SUPPORT
Op9.2 Saf3 FF2 IE5.5+
NONE NONE NONE FULL
Example
In the following example, all images in the
document have their magnification levels
increased by 150%:
img {
zoom: 150%;
}
magnified along with the parent. The
content surrounding an element that has zoom applied will reflow to account for
the resizing that will occur when zoom is set to a value other than normal.
Pages:
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549