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/letter-spacing.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS zoom applies to letter-spacing when specified and inherited</title>
<link rel="author" title="Stefan Zager" href="mailto:szager@chromium.org">
<link rel="match" href="reference/letter-spacing-ref.html">
<div style="letter-spacing: 2px; font-size: 12px">
12px font text with 2px letter-spacing
</div>
<hr>
<div style="letter-spacing: 2px; font-size: 12px; zoom: 2">
12px font zoomed text with 2px letter-spacing
</div>
<hr>
<div style="letter-spacing: 2px; font-size: 12px">
<div style="zoom:2">
12px font zoomed inherited text with 2px letter-spacing
</div>
</div>
<hr>