gpt4 book ai didi

javascript - 使用 CSS 的自动索引行未按预期运行

转载 作者:行者123 更新时间:2023-11-30 14:42:01 25 4
gpt4 key购买 nike

我正在尝试使用 CSS 自动索引每行中的第一个单元格。但是,第一行中的数字以 2 开头。我需要在 CSS 中进行哪些更改才能使计数器从 1 开始?

table {
counter-reset: rowNumber;
}

table tr {
counter-increment: rowNumber;
}

table tbody tr td:first-child::before {
content: counter(rowNumber);
}
<table>
<thead>
<tr>
<th>#</th>
<th>User Name</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td>{{userFullName}}</td>
</tr>
<tr>
<td></td>
<td>{{userFullName}}</td>
</tr>
</tbody>
</table>

最佳答案

tbody 而不是 table 上设置初始计数器。

tbody {
counter-reset: rowNumber;
}

tbody {
counter-reset: rowNumber;
}

tbody tr {
counter-increment: rowNumber;
}

tbody tr td:first-child::before {
content: counter(rowNumber);
}
<table>
<thead>
<tr>
<th>#</th>
<th>User Name</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td>{{userFullName}}</td>
</tr>
<tr>
<td></td>
<td>{{userFullName}}</td>
</tr>
</tbody>
</table>

关于javascript - 使用 CSS 的自动索引行未按预期运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49497271/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com