WebListBox Even/Odd colors

you can use style tags you store in the app html header
and you can choose the color of odd and even rows

<style>
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgb(233 236 239 / 22%);}
.table-striped tbody tr:nth-of-type(even) {
    background-color: rgb(233 236 239 / 22%);
.thead-light;}
</style>
1 Like