I am using Angular 4 with the bulma css framework and I am wondering how I can add a new row (or columns class) every third column.
The index variable which prints out 0,1,2 0,1,2 etc. was when I looking at a snippet when using bootstrap.
Noticed some comments on maybe I can use the template syntax but didn't get that to work either.
<div class="columns">
<div class="column is-one-third" *ngFor="let item of items | async; let index = index">
<app-item-details [item]='item '></app-item-details>
{{ index % 3 }}
<div class="is-clearfix" *ngIf="index % 3 == 0"></div>
</div>
</div>
change the condition in *ngIf as below.
*ngIf="(index + 1) % 4 == 0"
Plunker example : https://plnkr.co/edit/C0DrgY3Rty33ZRhyML7E?p=preview
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With