Answers for "table odd even color"

CSS
14

css table alternating row color

tr:nth-child(even) {background: #CCC}
tr:nth-child(odd) {background: #FFF}
Posted by: Guest on February-26-2020

Browse Popular Code Answers by Language