Created
November 7, 2013 05:10
-
-
Save infacq/7349296 to your computer and use it in GitHub Desktop.
Teknik pembilang dalam TABLE menggunakan CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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