Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-viewport/zoom/zoom-precision.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="match" href="zoom-precision-ref.html">
<link rel="author" href="mailto:dholbert@mozilla.com" title="Daniel Holbert">
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<style>
.s {
display: inline-block;
background: green;
width: 190px;
height: 100px;
}
.t {
font-size: 0;
width: 570px;
/* this is 3x the width of .s */
background: red;
zoom: 85%;
}
</style>
<div class="t">
<div class="s"></div>
<div class="s"></div>
<div class="s"></div>
</div>