CSS选择器的第n个范围?

CSS选择器的第n个范围?,第1张

CSS选择器的第n个范围?

您将无法一次完成此 *** 作

:nth-child()
-您将需要链接至少一个其他此类伪类。例如,的组合
:nth-child()
:nth-last-child()
(该
n+2
位装置开始从第二子分别计数向前和向后):

.myTableRow td:nth-child(n+2):nth-last-child(n+2){background-color: #FFFFCC;}

或者,不使用公式,只需排除

:first-child
:last-child

.myTableRow td:not(:first-child):not(:last-child){background-color: #FFFFCC;}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5567026.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存