I've been struggling to change the background color of my table rows. Here's what I attempted:
<tr style="background-color:#000099 !important;">
Unfortunately, this resulted in no change: After hours of trying and searching online for solutions, I found that the only thing that worked was
<style>
td{ background-color:#000099 !important;" }
</style>
However, I don't want to use this method as I need different background colors for each row. I even attempted creating separate classes for each type of row, but using td.classname did not yield any results.