.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
网友评论