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/word-spacing.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>CSS zoom applies to word-spacing when specified and inherited</style>
<link rel="author" title="Stefan Zager" href="mailto:szager@chromium.org">
<link rel="match" href="reference/word-spacing-ref.html">
<style>
.spacing {
word-spacing: 2rem;
}
.zoom {
zoom: 2;
}
</style>
<div class="spacing">
<div>unzoomed lorem ipsum</div>
</div>
<div class="zoom">
<div class="spacing">zoomed lorem ipsum</div>
</div>
<div class="spacing">
<div class="zoom">zoomed inherited lorem ipsum</div>
</div>