我希望能爲我的桌子交替顏色。但是,在應用表條帶類後,所有行都變灰了。我試圖加載v3和v4 boostrap css文件。它仍然沒有工作。表條紋班級不給我替代顏色
HTML
<table id="maxDiversificationTable" class="investmentTable table table-striped table-bordered table-hover table-fit" style="margin-top:-55%" >
<thead>
<tr style="color:#337AC7" >
<th >Tickers</th>
<th >Current Weight</th>
<th >New Weight</th>
<th >Conviction</th>
</tr>
</thead>
{% for tableData in dataSet %}
<tbody>
<tr>
<td>{{tableData.tickers}}</td>
<td>{{tableData.currentWeight}}</td>
<td>{{tableData.newWeight}}</td>
<td>{{tableData.conviction}}</td>
</tr>
</tbody>
{% endfor %}
</table>
非常感謝您!它完美的工作! – dickli2119