私のアプリケーション内のどこかに私は持っています
.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;
なぜこうなった?どうすれば修正できますか?