Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Multiple Table Styles on same page in WordPress Reply To: Multiple Table Styles on same page in WordPress

#241646
Atelierbram
Participant

If you can’t put classes on the tables, maybe you can use the nth-of-type selector to target the different tables in CSS, like:

:nth-of-type(0n+2) table tr:nth-child(odd) {
  background-color: salmon;
}

my fork of your demo