CSS to change nth row of Table background

Try this:

.rt-tr-group:nth-child(even) {
  background: #ccc;
}

You need to choose the parent element for the background to take effect.

1 Like