How nth-child Works →
There is a CSS selector, really a pseudo-selector, called nth-child. Here is an example of using it:
ul li:nth-child(3n+3) { color: #ccc;
}
What the above CSS does, is select every third list item…
Comments