1
0
Fork 0
firefox/testing/web-platform/tests/css/css-position/sticky/position-sticky-table-pixel-rounding-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

23 lines
460 B
HTML

<!DOCTYPE html>
<style>
table {
border-spacing: 0;
}
td {
padding: 0px 9.6px;
background-color: #fff;
}
.sticky {
position: sticky;
left: 0px;
background-color: #c3c3c3;
}
</style>
<table>
<tr>
<td class="sticky" style="width: 64px"></td>
<td class="sticky" style="width: 10px"></td>
<td class="sticky">Content</td>
</tr>
</table>