我已经看过了,这不是我需要的..
我需要类似的东西
table.mytable tr first-td's { border: 1px solid black; }
为了
<table class="mytable">
<tr>
<td>This has the border</td>
<td>no border</td>
<td>no border</td>
</tr>
<tr>
<td>This has the border</td>
<td>no border</td>
<td>no border</td>
</tr>
<tr>
<td>This has the border</td>
<td>no border</td>
<td>no border</td>
</tr>
</table>
如果这是不可能的,请告诉我,我会很难过。
如果需要完成工作,Javascript/jQuery 是可以接受的。