这是我的表..我应该添加什么让选定的行突出显示? 因此,更清楚地看到我的鼠标在哪里....................................... .....................如何突出显示表格中的选定行?
<style type ="text/css">
table.imagetable {
font-family: verdana,arial,sans-serif;
font-size:15px;
color:#333333;
border-width: 1px;
border-color: #999999;
border-collapse: collapse;
width:100%;
}
table.imagetable th {
background:#b5cfd2 url('/static/cell-blue.jpg');
border-width: 1px;
padding: 12px;
border-style: solid;
border-color: #999999;
}
table.imagetable td {
background:#dcddc0 url('/static/cell-grey.jpg');
border-width: 1px;
padding: 8px;
border-style: solid;
border-color: #999999;
}
</style>
<table class="imagetable">
<tr>
<th>Time</th><th>Category</th><th>Filename</th>
</tr>
{% for (t,f,c,l, t2) in data %}
<tr>
<td style = "padding:3px;">{{date}} {{t2}}</td>
<td sytle = "padding:3px;"><a href = "/report_category/{{c}}/">{{c}}</a></td>
<!-- l is the relative location, we need absolute directory here.-->
<td style = "padding:3px;"><a href = "/{{l}}">{{f}}</a></td>
</tr>
{% endfor %}
</table>
我也想用'thead'包列标题,并用'tbody'包装数据行。然后将上面的CSS修改为'table.imagetable tbody tr:hover'。 –
它不起作用.... –
@ThomasXie小心它是''table.imagetable tr:hover'' ** NOT **''table.imagetable tr.hover'' – HJerem