<table>
<thead>
</thead>
<tbody class="someclass">
<tr>
<td>
</td>
<td>
<table>
<tbody>
<tr>
<td>.....</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
The code snippet above here I want to style first tr of parent table with someclass like:
.someclass tr td{
.......
......
}
but it is getting applied to inner table also.