How can I add a border to the <tr>
element (t_border), without the inner table inheriting the style from the outer one?
<table>
<tr>
<td>A</td>
</tr>
<tr>
<td>
<table class="t_border">
<tr>
<td>B</td>
</tr>
</td>
</tr>
</tbody>