79439416

Date: 2025-02-14 12:51:30
Score: 0.5
Natty:
Report link

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.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Dan Jacobson