1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 01:47:34 +00:00
serenity/Tests/LibWeb/Layout/input/table/clip-spans-to-table-end.html
2023-06-19 13:19:55 +02:00

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>