有一个非常简单的问题,但不确定为什么我无法弄明白。
我有一张我正在创建的表格,tr
有一个info
类。
我试图在表格中看到,我希望tr
内的所有链接都有class
的有效white
。
这是我的表:
<table id="note_5" class="table table-bordered">
<tbody>
<tr class="info">
<td class="col-md-3"><small><a target="_BLANK" href="http://xxy">Carl Hussey</a></small></td>
<td class="col-md-3"><small>06/05/2015</small></td>
<td class="col-md-3"><small>x</small></td>
</tr>
<tr>
<td colspan="3">
<p>sdsfsdf</p>
</td>
</tr>
</tbody>
</table>
这就是我的尝试:
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th
.table > tbody > tr.info > td > a:link
.table > tbody > tr.info > td > a:active
.table > tbody > tr.info > td > a:hover {
background-color: #009CDE;
color: #fff;
}
我关门了吗?链接仍然是它的主要颜色,我不知道为什么。