美文网首页
nth-child(xxx)

nth-child(xxx)

作者: 苍老师的眼泪 | 来源:发表于2022-04-13 08:44 被阅读0次
    .wrapper > div:nth-child(3n) {
      background-color: greenyellow;
    }

其中n会被分别带入0, 1, 2, 3, 4, 5, ...
比如上面的就是0, 3, 6, 9... 被选中

    .wrapper > div:nth-child(3n + 1) {
      background-color: greenyellow;
    }

则会选中:
0 * 3 + 1 = 1
1 * 3 + 1 = 4
2 * 3 + 1 = 7
3 * 3 + 1 = 10

相关文章

网友评论

      本文标题:nth-child(xxx)

      本文链接:https://www.haomeiwen.com/subject/xriosrtx.html