Since May 2024, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
The zoom CSS property can be used to control the magnification level of an element. transform: scale() can be used as an alternative to this property.
The zoom CSS property scales the targeted element, which can affect the page layout. When scaling, the zoomed element scales from top and center when using the default writing-mode.
In contrast, an element scaled using scale() will not cause layout recalculation or move other elements on the page. If using scale() makes the contents larger than the containing element, then overflow comes into effect. Additionally, elements adjusted using scale() transform from the center by default; this can be changed with the transform-origin CSS property.
/* <percentage> values */ zoom: 50%; zoom: 200%; /* <number> values */ zoom: 1.1; zoom: 0.7; /* Non-standard keyword values */ zoom: normal; zoom: reset; /* Global values */ zoom: inherit; zoom: initial; zoom: revert; zoom: revert-layer; zoom: unset;
<percentage>Zoom factor. 100% is equivalent to normal. Values larger than 100% zoom in. Values smaller than 100% zoom out.
<number>Zoom factor. Equivalent to the corresponding percentage (1.0 = 100% = normal). Values larger than 1.0 zoom in. Values smaller than 1.0 zoom out.
Two non-standard keyword values are not recommended. Check browser compatibility data:
normalRender the element at its normal size; equal to zoom: 1. Use the global unset keyword value instead.
resetResets the value to zoom: 1 and prevents the element from being (de)magnified if the user applies non-pinch-based zooming (e.g., by pressing Ctrl - - or Ctrl + + keyboard shortcuts) to the document.
| Initial value | 1 |
|---|---|
| Applies to | all elements |
| Inherited | no |
| Percentages | Converted to <number>
|
| Computed value | as specified, but with <percentage> converted to the equivalent <number>
|
| Animation type | Not animatable |
zoom =
<number [0,∞]> |
<percentage [0,∞]>
In this example the paragraph elements are zoomed, on hovering a paragraph the zoom value is unset.
<p class="small">Small</p> <p class="normal">Normal</p> <p class="big">Big</p>
.small {
zoom: 75%;
}
.normal {
zoom: normal;
}
.big {
zoom: 2.5;
}
p:hover {
zoom: unset;
}
In this example the div elements are zoomed using the normal, <percentage>, and <number> values.
<div id="a" class="circle"></div> <div id="b" class="circle"></div> <div id="c" class="circle"></div>
div.circle {
width: 25px;
height: 25px;
border-radius: 100%;
vertical-align: middle;
display: inline-block;
}
div#a {
background-color: gold;
zoom: normal; /* circle is 25px diameter */
}
div#b {
background-color: green;
zoom: 200%; /* circle is 50px diameter */
}
div#c {
background-color: blue;
zoom: 2.9; /* circle is 72.5px diameter */
}
In this example a select field is used to change the zoom level of the element.
In this first block, of HTML, a select field is defined with the different zoom values to be used.
<section class="controls">
<label for="zoom"
>Zoom level
<select name="zoom" id="zoom">
<option value="0.5">Extra Small</option>
<option value="0.75">Small</option>
<option value="normal" selected>Normal</option>
<option value="1.5">Large</option>
<option value="2">Extra Large</option>
</select>
</label>
</section>
In this second block a not supported message is added that will be hidden if the browser supports zoom.
<p class="zoom-notice">CSS zoom is not supported</p>
The final block just defines the content that will be zoomed.
<section class="content">
<h1>This is the heading</h1>
<p>
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Placeat inventore
ea eveniet, fugiat in consequatur molestiae nostrum repellendus nam
provident repellat officiis facilis alias facere obcaecati quos sunt
voluptas! Iste.
</p>
<p>
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Placeat inventore
ea eveniet, fugiat in consequatur molestiae nostrum repellendus nam
provident repellat officiis facilis alias facere obcaecati quos sunt
voluptas! Iste.
</p>
</section>
In this first block, of CSS, we are setting the starting value for the --zoom-level using custom properties and then using that as the value for zoom on the content block.
html {
--zoom-level: normal;
}
.content {
max-width: 60ch;
margin: auto;
zoom: var(--zoom-level);
}
In this final CSS block we are checking to see if the browser supports zoom and if so setting the not supported message to display: none;.
@supports (zoom: 1) {
.zoom-notice {
display: none;
}
}
This JavaScript watches for a change in the select field and sets the new value for --zoom-level on the content section, e.g., style="--zoom-level: 1.5;".
const zoomControl = document.querySelector("#zoom");
const content = document.querySelector(".content");
const updateZoom = () => {
content.style = `--zoom-level: ${zoomControl.value}`;
};
zoomControl.addEventListener("change", updateZoom);
| Specification |
|---|
| CSS Viewport Module Level 1> # zoom-property> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
zoom |
1 | 12 | 126 | 15 | 3.1 | 18 | 126 | 14 | 3 | 1.0 | 4.4 | 3 |
reset |
1–59 | No | No | 15–46 | 3.1–18.4 | 18–59 | No | 14–43 | 3–18.4 | 1.0–7.0 | 4.4–59 | 3–18.4 |
zoom entry in CSS-Tricks' CSS Almanactransformscaleunset keywordzoom property via CSS-Tricks (2013)
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/zoom