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-fragmentation.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>background-clip:text in multi-column layout</title>
<link rel="match" href="clip-text-fragmentation-ref.html">
<style>
.multi_column {
font-size: 40px;
width: 8em;
column-gap: 0;
columns: 2;
orphans: 1;
widows: 1;
}
.clip {
color: transparent;
background-color: green;
background-clip: text;
}
</style>
<!-- A green word "PASS" should be seen below. -->
<div class="multi_column">
<div class="clip">
<div><br>PASS</div>
</div>
</div>