这是我的 CSS 样式表的一部分:
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;
}
YellowThreshold
它在我的 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>
最终结果从 中选择了粗体YellowThreshold
,但没有选择黄色背景颜色。Color
我已经用 just和 with试过了Background-Color
,但没有改变。有一些我没有解决的优先问题。有什么建议么?