Answers for "how to set alternate table row color in css"

CSS
3

css alternate row color

tr:nth-child(even) {
  background-color: #f2f2f2;
}
Posted by: Guest on September-18-2021

Code answers related to "how to set alternate table row color in css"

Browse Popular Code Answers by Language