nth-child(odd) and nth-child(2n+1). Both are the same thing, but which is faster?
I think you answered the question yourself; both are the same (although one saves on a character every time you write it, and is more quickly apparent).
Does it take any extra time to look up and process the keyword 'odd'?
Interesting ! Though I haven't got an idea on how to test this yet...
nth-child(odd) and nth-child(2n+1). Both are the same thing, but which is faster?
I think you answered the question yourself; both are the same (although one saves on a character every time you write it, and is more quickly apparent).
Does it take any extra time to look up and process the keyword 'odd'?
Interesting ! Though I haven't got an idea on how to test this yet...