How to index html table rows or how to Auto-number table rows?
Auto number table rows with CSS and JS 1. CSS Method table { counter-reset: rowNumber;}table tr { counter-increment: rowNumber;}table tr td:first-child::before { content: counter(rowNumber);