At the moment, I have my bootstrap grid structured like this
<div class="container">
<div class="row">
<div class="col-4">
<div class="A">
A
</div>
</div>
<div class="col-8">
<div class="B">
B
</div>
<div class="C">
C
</div>
</div>
</div>
</div>
This results in a layout similar to this
https://i.sstatic.net/sQyll.png
I've been attempting to modify the bootstrap setup so that on an extra small screen, the grid transforms into this:
https://i.sstatic.net/OEuae.png
However, my efforts have not been successful. I have experimented with using the Order class to switch the order of columns, but I couldn't reorder the individual blocks within the second column. Another approach was splitting the second column into separate rows, but again, Order only seemed to work within columns. Is it possible to achieve this type of layout manipulation within the bootstrap grid system or would I need to utilize flex classes instead?