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-multiline-linebreak.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>background-clip:text on an inline with forced linebreak</title>
<link rel="match" href="clip-text-multiline-linebreak-ref.html">
<style>
.container {
line-height: 1;
}
.textclip {
font-size: 100px;
background-color: lime;
background-clip: text;
color: transparent;
}
</style>
<div class="container">
<span class="textclip">
XX<br>
<span>YY</span>
</span>
</div>