将CSS悬停应用于tbody(不带th)

时间:2016-04-11 10:25:21

标签: html css

我想只关注我桌子的<link rel="stylesheet" href="assets/style.css">并排除第一个body(仅包含tr),我的桌子:

th

和身体:

<table id = "routes">
<!-- this part will not be highlighted on hover-->
<tr>
  <th>env</th>
  <th>route</th>
</tr>

我的css适用于所有表格(包括<!-- this part will be highlighted on hover --> <tbody ng-repeat="i in list"> <tr> <td>{{i.id}}</td> <td>{{i.route}}</td> </tr> ):

th

谢谢。

0 个答案:

没有答案