1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:57:35 +00:00

LibWeb: Resolve table border conflicts with rows

This commit is contained in:
Andi Gallo 2023-07-09 04:57:03 +00:00 committed by Andreas Kling
parent e30662a8a0
commit cf40b95be8
3 changed files with 115 additions and 1 deletions

View file

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