gpt4 book ai didi

css - 多个 nth-last-child 和/或 last-child 不工作

转载 作者:太空宇宙 更新时间:2023-11-03 20:17:52 25 4
gpt4 key购买 nike

不工作:

td:not(:last-child), td:not(:nth-last-child(2))
{ background-color:#ccc; }

不工作:

td:not(:nth-last-child(1)), td:not(:nth-last-child(2))
{ background-color:#ccc; }

不工作:

td:not(:nth-last-child(2))
{ background-color:#ccc; }

td:not(:nth-last-child(1))
{ background-color:#ccc; }

独自工作时:

td:not(:nth-last-child(2))
{ background-color:#ccc; }

独自工作

td:not(:nth-last-child(1))
{ background-color:#ccc; }

示例:http://jsfiddle.net/HBeRH/

最佳答案

这个有效:

td:not(:nth-last-child(2)):not(:nth-last-child(1)) {
background-color:#ccc;
}

Check this demo

关于css - 多个 nth-last-child 和/或 last-child 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17039255/

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