Code:
<table>
<tr>
<ng-container ng-if="false"> // here ng-container not working
<td>
<ng-container ng-if="false">abc</ng-container>// here ng-container working fine
</td>
<td><ng-container ng-if="true">xyz</ng-container></td>
</ng-container>
</tr>
</table>
OutPut:
xyz
here expected output is no one cell was display but in between
<tr>
and<td>
tags<ng-container ng-if="false">
are not working.
If anyone idea about this problem please get solution.