This is a section of my CSS stylesheet:
table tr td { border-width: 1px; border-style: solid; border-color: black; border-collapse: collapse; overflow: wrap; background-color: #CCFFFF; text-align: center; } table { width: 75%; } tr { maximum-width: 200px; } tr.RedThreshold { background-color: red; } tr.YellowThreshold { background-color: yellow !important; font-weight: bold; }
It erases this YellowThreshold element in my HTML:
<tr class="YellowThreshold"> <td>vrd70</td> <td>29</td> <td>0x127c</td> <td>4.86</td> <td>4.54</td> <td>6.06</td> </tr>
The end result selects the bold from YellowThreshold but does not raise the background yellow. Ive tried this with Color and Background-Color , but no change. Theres some priority issues Im not going through. Any suggestions?
gregs source share