1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 06:48:12 +00:00
serenity/Tests/LibWeb/Layout/input/table/border-conflict-resolution-with-cell.html
Andi Gallo e30662a8a0 LibWeb: Resolve table border conflicts with cells
Build a mapping from coordinates to cells and use it to resolve
border conflicts between adjacent cells.
2023-07-12 20:42:51 +02:00

29 lines
No EOL
408 B
HTML

<style>
table {
border-collapse: collapse;
}
td {
border: 1px solid black;
padding: 10px 20px;
}
.td-thick-border {
border: 5px solid black;
}
</style>
<table>
<tbody>
<tr>
<td>A</td>
<td class="td-thick-border">B</td>
<td>C</td>
</tr>
<tr>
<td>D</td>
<td>E</td>
<td class="td-thick-border">F</td>
</tr>
</tbody>
</table>