HTML:
<table id="t1">
<th>test</th>
<tr>
<td>
<table id="t2">
<th>test2</th>
</table>
</td>
</tr>
</table>
CSS to style the background-color of "test2" differently?:
#t1 tr td #t2 th {
background-color: ~;
}