alternate color css

Solutions on MaxInterview for alternate color css by the best coders in the world

showing results for - "alternate color css"
Emilie
17 Jul 2020
1table tr:nth-child(odd) td{
2    ...
3}
4table tr:nth-child(even) td{
5    ...
6}