テーブルの行を削除・追加しても、自動的に連番になる方法を参考に、テーブルにクラス指定するだけで連番になるように改良した。
auto_numbering_table.css
.numbering {
counter-reset: num;
}
.numbering tr td:first-child:before {
counter-increment: num;
content: " " counter(num) ".";
}
Go to list of users who liked
More than 5 years have passed since last update.
テーブルの行を削除・追加しても、自動的に連番になる方法を参考に、テーブルにクラス指定するだけで連番になるように改良した。
.numbering {
counter-reset: num;
}
.numbering tr td:first-child:before {
counter-increment: num;
content: " " counter(num) ".";
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked