Skip to content

Instantly share code, notes, and snippets.

@infacq
Created November 7, 2013 05:10
Show Gist options
  • Save infacq/7349296 to your computer and use it in GitHub Desktop.
Save infacq/7349296 to your computer and use it in GitHub Desktop.
Teknik pembilang dalam TABLE menggunakan CSS
table { counter-reset: line-number; }
tbody > tr > td:first-child:before {
content: counter(line-number) ".";
counter-increment: line-number;
padding-right: 0.3em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment