I am working on my Angular 8 project and I have a requirement to order an array in the following format:
1 4 7 10
2 5 8 11
3 6 9 12
This array is generated from a GET call, so the number of items can vary. It needs to be responsive in design.
I am using Bootstrap 4.x and attempting to achieve this layout with the flex-direction
property, but I seem to be missing something.
Is there a simple solution for accomplishing this?