谢谢
------解决方案--------------------------------------------------------
.td{
/*.....*/
}
------解决方案--------------------------------------------------------
<style>
.td1{background-color:red;}
.td2{background-color:blue;}
</style>
<table>
<tr>
<td class=td1> aaa </td>
<td class=td2> 23234 </td>
</tr>
</table>
------解决方案--------------------------------------------------------
给每个TD设置相同的class,然后对这个class进行CSS就行...
如果想不同,就多设置几个ID吧...