We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The :odd selector is a shortcut for :nth-of-type(odd), which selects each element whose position is an odd number (first, third, fifth, etc.)
:odd
:nth-of-type(odd)
document.querySelectorAll('td:odd')