Boostrap样式链接在表中

时间:2015-06-05 16:17:47

标签: css twitter-bootstrap-3

有一个非常简单的问题,但不确定为什么我无法弄明白。

我有一张我正在创建的表格,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;
}

我关门了吗?链接仍然是它的主要颜色,我不知道为什么。

0 个答案:

没有答案