table tr:nth-child(1){
    counter-reset: rowNumber;
  }
  table tr {
    counter-increment: rowNumber;
  }
  table tr td:first-child::before {
    content: counter(rowNumber);
    min-width: 1em;
    margin-right: 0.5em;
  }