Published
- 1 min read
css odd even child
The solution for this is noted below
css odd even child
Solution
tr:nth-child(even) {
background: #ccc;
}
tr:nth-child(odd) {
background: #fff;
}
Try other methods by searching on the site. That is if this doesn’t work