mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 10:15:08 +00:00

For the containing block, table borders are opaque and have to be accounted when computing the table width since they use available space.
46 lines
No EOL
990 B
HTML
46 lines
No EOL
990 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>Rowspan interaction with nested tables</title>
|
|
|
|
<style>
|
|
table {
|
|
border: 5px solid black;
|
|
border-spacing: 2px;
|
|
}
|
|
|
|
td {
|
|
border: 5px solid blue;
|
|
padding: 5px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td>X</td>
|
|
<td rowspan="2">
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td>A</td>
|
|
</tr>
|
|
<tr>
|
|
<td>B</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Y</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
|
|
</html> |