Is there a way to achieve this floating layout using Bootstrap 4 flex Grid? I've attempted to use the flex order function but encountered some issues. Have a look at my result:
<div class="row align-items-start">
<div class="col-sm-8 float-left" style="background: orange;order:1">
<div class="white-container pt-5 pb-5">
# LEFT 1
</div>
</div>
<div class="col-sm-4 float-right" style="background: pink;order:2">
<div class="white-container pt-3 pb-3">
# RIGHT 1
</div>
</div>
<div class="col-sm-4 float-right" style="background: grey;order:4">
<div class="white-container pt-3 pb-3 ">
# RIGHT 2
</div>
</div>
<div class="col-sm-8 float-left" style="background: yellow;order:3">
<div class="white-container pt-5 pb-5">
# LEFT 2
</div>
</div>
<div class="col-sm-8 float-left" style="background: yellow;order:5">
<div class="white-container pt-5 pb-5">
LEFT 3
</div>
</div>
<div class="col-sm-4 float-right" style="background: grey;order:6">
<div class="white-container pt-3 pb-3">
RIGHT 3
</div>
</div>
</div>
The issue with my current solution lies in the spaces between the right columns. Any advice or suggestions before I resort to using JavaScript would be greatly appreciated :)