Files
ladybird/Tests/LibWeb/Ref/separate-borders-inline-table.html
2023-08-14 15:12:19 +02:00

18 lines
276 B
HTML

<style type="text/css">
td {
border: 5px solid blue;
padding: 20px;
}
table {
border: 5px solid black;
display: inline-block;
border-collapse: separate;
}
</style>
<table>
<tr>
<td>A</td>
</tr>
</table>