I´m working on a Bootstrap/Flex project. In this project, there´s a part that is a list of items.
I would like to put equal space between the items columns, even when the last row of items is incomplete. Just like the example picture below:
https://i.stack.imgur.com/E4aC9.png
It´s almost what flex-wrap does, with the addition of the justify-content-between property. Kind of a merge between the two properties.
But when I try to do just a merge of the two properties above, I end up with something like this:
https://i.stack.imgur.com/YFHAO.png
What do you guys suggest?
Thank you in advance!
P.S.: of course, it needs to be responsive. It means that in mobile, for example, each row will have only 2-3 items. In desktop, however, each row can have 7-11 items.