I am currently facing an issue with a nested table (class="inner-table") in Angular. The border-bottom property applied to the tr is not being displayed.
<table>
<td>
<table class="inner-table">
<tr>row1</tr>
<tr>row2</tr>
</table>
</td>
</table>
CSS
.inner-table tr{
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
line-height: 2;
border-bottom: 1px solid black;
}