mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 01:47:34 +00:00

This occurs on Wikipedia for tournament brackets, for example: https://en.wikipedia.org/wiki/2022%E2%80%9323_UEFA_Champions_League_knockout_phase
25 lines
No EOL
356 B
HTML
25 lines
No EOL
356 B
HTML
<style>
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
td {
|
|
padding: 10px;
|
|
border: 1px solid black;
|
|
}
|
|
</style>
|
|
|
|
<table>
|
|
<tr>
|
|
<td>1</td>
|
|
<td>2</td>
|
|
<td>3</td>
|
|
</tr>
|
|
<tr>
|
|
<td>4</td>
|
|
<td rowspan="3" colspan="3">6-9</td>
|
|
</tr>
|
|
<tr>
|
|
<td>5</td>
|
|
</tr>
|
|
</table> |