I've a problem and i can't figure out how to solve it.
The layout that i want is the following:
+-----------+
| Desktop |
+------+----+
| |BOX1|
| +----+
| BOX2 |BOX3|
| +----+
+------+
+--------+
| Mobile |
+--------+
| BOX1 |
+--------+
| |
| BOX2 |
| |
+--------+
| BOX3 |
+--------+
The code that i've written is:
<div class="col-12 col-md-5">
<div class="box"></div>
</div>
<div class="col-12 col-md-7 order-md-first">
<div class="box"></div>
</div>
<div class="col-12 col-md-5 offset-md-7">
<div class="box"></div>
</div>
The problem is that the last box3 doesn't go under the box1, instead it align itself at the end of the box2:
+-----------+
| Desktop |
+------+----+
| |BOX1|
| +----+
| BOX2 |
| |
+------+----+
|BOX3|
+----+
I can't figure out how to do it, i've tried to group BOX1 and BOX3 inside a col but it won't work in mobile this way.