I want to arange unequal high elements in a floating environment with bootstrap 4 and flexbox.
Without using flexbox in BS4 the elements are aranged in equal height ( <div class="row">
). Applying flexbox like <div class="row d-flex flex-wrap align-items-start">
I get the desired alignment but if the elements have an unequal height they - of course - don't float.
Is there a way to achieve this to look
like the "former" BS3 bahaviour ?
I want to implement a general "algorithm" so that I can add elements without specifying the positions explicitly.