WebListBox Even/Odd colors

After styles have deprecated, I can not seem to find a way to make table not having alternate row color (or make the even and add rows same color). My applications used a specific styling where table was completely white, with a very thin grey line between rows. It looks like there is no way to make the table completely look identical like before.
Any suggestions?

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