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-002.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-002-ref.html">
<style>
table {
border-collapse: collapse;
border: 8px solid cyan;
}
td, th {
border: 1px solid black;
}
</style>
<table>
<thead>
<tr>
<th>A</th>
<th rowspan=2></th>
<th>B</th>
</tr>
</thead>
<tbody>
<tr>
<td>C</td>
<td></td>
<td>D</td>
</tr>
</tbody>
</table>