23 lines
460 B
HTML
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>
|
|
|