我想只关注我桌子的<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
谢谢。