Is it possible to use the nth-child with modulo? I know you can specify a formula, such as
nth-child
nth-child(4n+2)
But I can\'t seem t
If you want modulous with n=2 than you can use even or odd.
n=2
tr:nth-child(even) { background-color: #ffffdffffd; }