gpt4 book ai didi

jquery - css 有没有办法选择倒数第二个 child ?

转载 作者:行者123 更新时间:2023-12-01 06:54:31 25 4
gpt4 key购买 nike

还需要确保浏览器兼容性(应该在 IE8 中工作)

我遇到了 - :nth-last-child(2)
但它与浏览器不兼容,因为它是一个 css3 选择器。

我还发现了一个技巧,可以将第二个、第三个、第四个 child 设置为 - td:first-child + td + td
但无法像
td:last-child - td
那样反转来获得倒数第二个 child 。

我不想使用jquery。
将类应用于倒数第二个元素是唯一的选择吗?

最佳答案

CSS3 nth-last-child 可能是正确的选择,因为支持应该变得越来越普遍。

如果失败,您可以简单地将 CSS 类添加到标记中的元素,例如:

<tr>
<td>...</td>
<td class = "penultimate">...</td>
<td>...</td>
</tr>

关于jquery - css 有没有办法选择倒数第二个 child ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10595752/

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