如何将计数器添加到表的顶部而不是底部

时间:2018-12-07 00:57:11

标签: html css

我有以下内容,其中我使用CSS将计数器添加到表中

HTML

db
body {
  counter-reset: Serial;
}

tr td:first-child:before {
  counter-increment: Serial;
  /* Increment the Serial counter */
  content: counter(Serial);
  /* Display the counter */
}

要添加的JS动态更新表

<table class="table table-hover sortable" id="numbers">
  <thead>
    <tr>
      <th scope="col">#</th>
      <th scope="col">number#</th>
      <th scope="col">Time</th>
    </tr>
  </thead>
  <tbody>

  </tbody>
</table>

这给了我结果

enter image description here

第一栏是1,2,3 ....我 希望它是3,2,1,依此类推.....

0 个答案:

没有答案