Difference between revisions of "User:SIGSTKFLT/exp/style.css"

From Geohashing
(Created page with ".sig-exp-table { https://stackoverflow.com/questions/17012421/auto-number-table-rows: counter-reset: rowNumber; } .sig-exp-table tr { counter-increment: rowNumber; }...")
 
(No difference)

Revision as of 15:48, 6 March 2020

.sig-exp-table { /* https://stackoverflow.com/questions/17012421/auto-number-table-rows */
  counter-reset: rowNumber;
}
.sig-exp-table tr {
  counter-increment: rowNumber;
}
.sig-exp-table tr td:first-child::before {
  content: counter(rowNumber) ".";
  padding-right:3px;
}