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-constrain-geometry.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>background-clip:text clips background to text area</title>
<link rel="match" href="clip-text-constrain-geometry-ref.html">
<style>
div {
font-size: 100px;
width: 400px;
background: red;
background-clip: text;
color: green;
}
</style>
<!-- There should be no red below. Text should appear green on white. -->
<div>XXXX</div>