
tbody.list {
    counter-reset: rowNumber;
}

tbody.list tr {
    counter-increment: rowNumber;
}

tbody.list tr td:first-child::before {
    content: counter(rowNumber);
    margin-left:20px;
}
