Categories: Dev News
There is a CSS selector, really a pseduo-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 inside unordered lists
View original post here:
How nth-child Works
No Comments yet