1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 05:08:13 +00:00
serenity/Tests/LibWeb/Layout/input/table/align-top-and-bottom.html

22 lines
No EOL
398 B
HTML

<style>
table {
border: 1px solid black;
border-collapse: collapse;
}
td {
border: 1px solid black;
padding: 15px;
}
</style>
<table>
<tr>
<td rowspan="2" style="vertical-align: top;">Top</td>
<td rowspan="2" style="vertical-align: bottom;">Bottom</td>
<td>A</td>
</tr>
<tr>
<td>B</td>
</tr>
</table>