我有一个表,其中表头包含一个href以及每个tr。我想改变th ahref的颜色而不影响tr中ahref的颜色。我怎么能这样做呢?
<table>
<tr>
<th>
<a href="/Index">Index</a>
</th>
</tr>
<tr>
<a href="/Index2">Index</a>
</tr>
</table>
table.Documents th
{
color: Black;
}
不起作用
答案 0 :(得分:3)
table th a {
color: black; //wont apply to td a
}
另外,你的html格式很糟糕。它应该是:
<tr>
<td>
<a href="/Index2">Index</a>
</td>
</tr>
如果您想使用“文档”类:
<table class="Documents">