次のようなhtmlがあります。
<table id="MatrixTable" class="zebra-striped">
<thead>
<tr style="background-color: White;">
<td style="min-width: 31px !important;">
...
</td>
ご覧のとおり、html コードで背景色を白に設定しています。
次に、これを CSS で設定すると、機能しなくなります。奇妙なことに、実行時に CSS を検査すると (IE F12)、thead / tr の背景色が白になっていることがわかります。
#MatrixTable thead tr
{
background-color: White !important;
}
これが CSS ファイルで機能しないのはなぜですか? 私のcssファイルの他のものは適切に適用されています。
ありがとう。