1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 19:25:10 +00:00
serenity/Tests/LibWeb/Layout/input/table/top-caption-with-padding.html
Andi Gallo 66c92ebe3d LibWeb: Fix vertical position of top table caption
Setting the top of the table coordinate should not consider the top
padding and margin of the caption, just the bottom and content height.
2023-07-25 11:21:07 +02:00

15 lines
No EOL
162 B
HTML

<style>
caption {
caption-side: top;
padding: 10px;
}
</style>
<table>
<caption>
Caption
</caption>
<tr>
<td>Cell</td>
</tr>
</table>