Here's your answer:
<!DOCTYPE html>
<html>
<head>
<title>test</title>
<style type="text/css">
table { counter-reset: row-counter; }
tbody tr { counter-increment: row-counter; }
tr td:nth-child(2)::before { content: counter(row-counter);}
</style>
</head>
<body>
<table border="1">
<tr><td></td><td></td><td></td></tr>
<tr><td></td><td></td><td></td></tr>
<tr><td></td><td></td><td></td></tr>
</table>
All I know is it works. Don't ask me why.