I'm looking for some help. We are reworking our software system and with the new design we've got, we actually want to focus it on a column way.
Our clients can manage their CRM and make new fields that they want to use for their relation. We've always been working from left to right, but want to actually start moving from top to bottom.
Like for example:
1 2 3 4 5 6 7 8 9 10 11 12
This is how it is now. But we wanna start moving to
1 4 7 10 2 5 8 11 3 6 9 12
We use bootstrap 4, but i have not found a way to do this, pure with HTML and CSS. Been looking a bit at display:grid, but have not found a solution that would work for us. The biggest issues with this is, that it should be flexable. So i don't wanna work with fixed withs and heights.
Can someone push me in the right direction? Is there even a good solution for this? We need to support the most populair browsers and we would love to support IE 11 too at least.
[EDIT]
Some extra info. I've been trying to use display:flex, but i'm getting the next issue.
When an items is larger than others, the item's on the same row get that item his height, but it should just fill the space then with other items. For example:
This is what i get:
1 4 5 2 3 6 3 4 7
This is what i want to do
1 4 10 5 11 6 7 13 2 8 14 3 9