Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-tables/collapsed-border-large-rowgroup-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="UTF-8">
<title>border-collapse with rowspan past rowgroup size</title>
<link rel="match" href="collapsed-border-large-rowgroup-001-ref.html">
<style>
table {
border-collapse: collapse;
border: 8px solid cyan;
}
td {
border: 4px solid black;
}
</style>
<table>
<tr>
<td>A</td>
<td rowspan="2">B</td>
</tr>
</table>