HTML:
<table id="t1">
<th>test</th>
<tr>
<td>
<table id="t2">
<th>test2</th>
</table>
</td>
</tr>
</table>
用于“test2”的不同背景颜色的CSS?:
#t1 tr td #t2 th{
background-color: ~;
}
答案 0 :(得分:-1)
您可以使用:
#t2 th{
background-color: ~;
}