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/font-size.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS zoom applies to font-size when specified and inherited</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="match" href="font-size-ref.html">
<div style="font-size: 12px">
12px text
</div>
<hr>
<div style="font-size: 12px; zoom: 2">
12px zoomed text
</div>
<hr>
<div style="font-size: 12px">
<div style="zoom:2">
12px zoomed inherited text
</div>
</div>