Try this:
.rt-tr-group:nth-child(even) {
background: #ccc;
}
You need to choose the parent
element for the background to take effect.
Try this:
.rt-tr-group:nth-child(even) {
background: #ccc;
}
You need to choose the parent
element for the background to take effect.