Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-backgrounds/background-clip/clip-text-scaled.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>background-clip:text in a scaled element</title>
<link rel="match" href="clip-text-scaled-ref.html">
<style>
body { overflow: hidden; margin: 0; }
.scaled {
transform: scale(2);
transform-origin: top left;
}
.clip-text {
font-size: 50px;
background-color: blue;
background-clip: text;
color: transparent;
}
</style>
<div class="scaled">
<span class="clip-text">This text should be nice and sharp.</span>
</div>