Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<title>CSS zoom applies to -webkit-text-stroke-width when specified and inherited</title>
<link rel="author" title="Stefan Zager" href="mailto:szager@chromium.org">
<style>
body {
--scale: 1;
}
div {
font-size: calc(3rem * var(--scale));
-webkit-text-stroke-width: calc(2px * var(--scale));
color: cornflowerblue;
-webkit-text-stroke-color: hotpink;
}
.zoom {
--scale: 2;
}
</style>
<div>unzoomed</div>
<div class="zoom">zoomed</div>
<div class="zoom">zoomed inherited</div>