I have a block of html code that I don't have control over. I do, however, have access to alter the stylesheet. I need to add some style to the first nested table. Here is the html:
<table class="outer">
<tr>
<td>
<table>
.
.
.
</table>
</td>
<td>
.
.
.
</td>
</tr>
</table>
I want to style the first nested table. I thought that this would be the correct selector to do so but it doesn't seem to be working:
table.outer tr > td:first-child > table
It seems to want to style all tables and not just those inside the first td.