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-on-body-not-propagated-to-root.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>background-clip:text on the root</title>
<link rel="stylesheet" href="/fonts/ahem.css">
<link rel="match" href="clip-text-on-body-not-propagated-to-root-ref.html">
<style>
html {
background-color: white;
font-size: 24px;
color: transparent;
font-family: Ahem;
}
body {
background-color: green;
background-clip: text;
}
</style>
This text should be green<br>
on a white background.