I have this html:
<div class="w-full flex justify-center"><div *ngFor="let item of items" class="flex w-1/2"><span>{{item.label}}</span><span>{{item.value}}</span></div></div>This way, the html in UI is displayed as:
LABEL 1 - VALUE 1 | LABEL 2 - VALUE 2LABEL 3 - VALUE 3 | LABEL 4 - VALUE 4LABEL 5 - VALUE 5 | LABEL 6 - VALUE 6I need to display data like this:
LABEL 1 - VALUE 1 | LABEL 4 - VALUE 4LABEL 2 - VALUE 2 | LABEL 5 - VALUE 5LABEL 3 - VALUE 3 | LABEL 6 - VALUE 6I´ve been trying to find working solution, but without luck. Can you suggest working solution?