I have a dynamic table in my form, and I’m trying to stripe the rows. In my default.css I am using
tbody tr:nth-child(even) { background-color: #F0F0F0; }
It doesn’t matter the number of lines, what does seem to matter is if it is breaking to a new page. If it is multi-page it will stripe lines 1,3,5, etc even though the .css says even.
If it is a single page, it will stripe the even lines as expected.
Any ideas what it’s doing? Does it count from the bottom?
Thanks, Rick