Is there a way to style items 1 through 10 in CSS without using nth-child selectors individually?
Instead of doing:
&.nth-child(1) { //style }
&.nth-child(2) { //style }
&.nth-child(3) { //style }
I'm looking for a range selector in CSS that can help achieve this.