问答详情
源自:6-9 CSS3 结构性伪类选择器—nth-last-child(n)

如何实现前三个child变色,只能写3次吗?

li:nth-child(1),nth-child(2),nth-child(3){background:green;}


只能这样吗? 如果20个元素 前10个变色就得写10次吗

提问者:慕前端9244148 2020-12-31 20:02

个回答

  • 慕前端9244148
    2020-12-31 20:06:39

    我百度到了 可以是li:nth-child(-n+3):nth-child(n+1){background:green;}