Answers for "how to add color to alternate rows in html"

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 add color to alternate rows in html"

Browse Popular Code Answers by Language