<div class="row">
<div *ngFor="let column of columns">
<div class="col">
<div *ngFor="let cell of column">
...cellcontent...
</div>
</div>
</div>
</div>
Here columns is a matrix (object[ ][ ]). I expect the columns to be the same and span the full width of the row, which is how bootstrap usually works.
That is, the columns are stretched only by the size of the content and do not occupy the entire row. Why does it work this way and how to achieve the correct behavior?
I definitely do not use styles that can break something here.
