CSS repeating panel n-th object color

Here’s the CSS I use in a similar role (I can’t take credit for it, @stucork provided it in response to a similar question years ago):

.anvil-role-striped .anvil-data-row-panel:nth-child(even) {
    background: #EEEEEE;
}
3 Likes