DEV Community

Discussion on: Three neat CSS features

Collapse
 
acz13 profile image
Albert Zhang • Edited

Personally I'm a bigger fan of parent child:nth-of-type(odd) rather than parent:nth-child(odd)... (e.g. tbody tr:nth-of-type(odd)) just in case you have some extra elements in there somewhere that aren't the list elements/table rows.