我有一个简单的表:
<table class="table table-condensed table-striped">
<tr>
<td>First Name</td>
<td>Last Name</td>
</tr>
<tr>
<td>teste1</td>
<td>teste2</td>
</tr>
</table>
使用自定义 CSS:
tr:first-child {
color: #696969;
background-color: black; !important;
}
颜色已应用,但background-color
, 未应用。为什么?随着作品last-child
。background-color
谢谢。
更新:如果我删除table-striped
它就可以了。但我需要保留它。
更新 2:table-striped
引导 CSS:
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
background-color: #f9f9f9;
}