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-transform.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>background-clip:text with CSS transforms</title>
<link rel="match" href="clip-text-transform-ref.html">
<style>
body {
font-size: 40px;
}
.transformed {
transform: translateX(0);
}
.t {
background: blue;
background-clip: text;
color: rgba(255,0,0,0.5);
}
</style>
<!-- Passes if all texts are purple. -->
<div class="t">Text1</div>
<div class="t transformed">Transformed2</div>
<div class="t">Text3</div>
<div class="t transformed">Transformed4</div>