What I am trying to achieve is this: 1 long left column- and next to it, 2 rows on the right, that together - align up to the left column. In a table it would super easy to do:
----------------------------
| | |
| col-4 | col-8 |
| | |
| |________________|
| | |
| | |
| | col-8 |
| | |
----------------------------
My code looks like this, but its only half way there: I cant get the second row col-8
to move up to its twin (other than some kind of custom made double row
with a negative margin-top
).
<div class="row d-flex flex-row-reverse">
<div class="col-sm-8 align-self-start">888</div>
<div class="col-sm-4" style="height: 400px;">444</div>
<div class="col-sm-8 ">888</div>
</div>
Thank you.