I have been reading this article and it is pretty clear to me so far that something along the lines of: ul li:nth-child(3n+3) will select every 3rd li due to the fact that the "n" within the expression starts at zero and then represents a set of all positive integers; so n = 0, n = 1, n = 2, etc., which in the article I have linked goes on to indicate that indeed :nth-child(3n+3) is tantamount to (3x0)+3 which equals 3, (3x1)+3 equals 6 and so on. I have also seen similar CSS such as: .some-selector:nth-child(1n); .some-selector:nth-child(2n);
What I glean from the examples from the aforementioned article leads me to posit that .some-selector:nth-child(1n); would equate to .some-selector:nth-child(0); but this also feels wrong to me. Can someone help me to better understand this? Thanks