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-background-table-cell.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<title>Test 'background-clip: text' on Table Cells</title>
<link rel="match" href="clip-text-background-table-cell-ref.html">
<meta name="fuzzy" content="maxDifference=0-6;totalPixels=0-728">
<style>
table {
position: relative;
top: 1px;
margin: 0;
border-collapse: collapse;
}
tr {
padding: 0;
font-size: 40px;
line-height: 40px;
font-family: sans-serif;
vertical-align: top;
background: linear-gradient(red, blue);
background-clip: text;
color: transparent;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<td>Text</td>
</tr>
</thead>
</table>
</body>
</html>