在我的应用程序中的某个地方我有
.table-striped tbody>tr:nth-child(odd)>td, .table-striped tbody>tr:nth-child(odd)>th {
background-color: #f9f9f9;
}
通过使用服务器端代码(在ItemDataBound
转发器控件的情况下),我将以下 CSS 类应用于特定行,如下所示
<tr id="MyRow" class="fc pwon">
哪个是...
.fc {
background-color: #fcfcfc;
}
.pwon {
background-color: rgba(77, 144, 254, 0.47) !important;
color: black;
text-align: center;
}
不幸的是,在该行应用的颜色是#f9f9f9;
为什么会这样?我该如何解决?