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-inline.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>background-clip:text on inline elements</title>
<link rel="match" href="clip-text-inline-ref.html">
<style>
body {
font-size: 40px;
}
.text-clip {
background: blue;
background-clip: text;
color: rgba(255,0,0,0.5);
}
</style>
<!-- Passes if all texts below are purple. -->
<!-- The s are to avoid glyph overflows. -->
<span class="text-clip"> Text1 </span><span class="text-clip"> Text2 </span>
<br>
<span class="text-clip"> Text3 </span><span class="text-clip"> Text4 </span>