1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 20:17:44 +00:00

LibWeb: Add border conflict resolution with rowgroup

This commit is contained in:
Andi Gallo 2023-07-09 23:04:24 +00:00 committed by Andreas Kling
parent cf40b95be8
commit 3476cf0fcb
4 changed files with 157 additions and 2 deletions

View file

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