position-sticky-table-pixel-rounding-ref.html (460B)
1 <!DOCTYPE html> 2 <style> 3 table { 4 border-spacing: 0; 5 } 6 td { 7 padding: 0px 9.6px; 8 background-color: #fff; 9 } 10 .sticky { 11 position: sticky; 12 left: 0px; 13 background-color: #c3c3c3; 14 } 15 </style> 16 <table> 17 <tr> 18 <td class="sticky" style="width: 64px"></td> 19 <td class="sticky" style="width: 10px"></td> 20 <td class="sticky">Content</td> 21 </tr> 22 </table>