I have made a list of elements, that contains 81 divs in a row.
I want to select the elements 28 to 36 in it.
How can I do that using some CSS selector?
I guess we have to use the nth-child, but it requires a formula.
I can select the element 3, 12, 21, 30, 39, 48, 57, 66, 75 using something like
nth- child(9n + 3)