为了账号安全,请及时绑定邮箱和手机立即绑定

这三种不同方式的写法可做参考。type 子元素(注意子元素要避开p) 子元素倒叙

.wrapper > div:nth-of-type(2n+1),
.wrapper > p:nth-of-type(2n){
  background: orange;
}
/*或者*/

.wrapper > div:nth-first-child(4n+1),
.wrapper > p:nth-of-type(2n){
  background: orange;
}
/*或者*/

.wrapper > div:nth-last-child(2n+1),
.wrapper > p:nth-of-type(even){
  background: orange;
}


正在回答

3 回答

:nth-last-child(2n+1)这个没有效果吧?

0 回复 有任何疑惑可以回复我~

感觉应该是nth-child(4n+1) ? 不是nth-first-child(4n+1)?

1 回复 有任何疑惑可以回复我~

我觉得,nth-of-type(2n+1)、odd、(2n-1)根本只算一种方法。把前面的知识都用进去才是作者的本意。

2 回复 有任何疑惑可以回复我~
#1

RlloyRlloy

赞同,学以致用
2019-03-11 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

这三种不同方式的写法可做参考。type 子元素(注意子元素要避开p) 子元素倒叙

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信