Angular 4 *ngFor adding a row div every third column
change the condition in *ngIf as below.
*ngIf="(index + 1) % 4 == 0"
Plunker example : https://plnkr.co/edit/C0DrgY3Rty33ZRhyML7E?p=preview
change the condition in *ngIf as below.
*ngIf="(index + 1) % 4 == 0"
Plunker example : https://plnkr.co/edit/C0DrgY3Rty33ZRhyML7E?p=preview