I'm fairly new to bootstrap and I have been having trouble re-ordering columns when re-sized in mobile.
So far this is what I have tried:
<div class="container">
<div class="row">
<div class="col-lg-5 order-lg-1">
B
</div>
<div class="col-lg-5">
<div class="col-lg-12 order-lg-0">
A
</div>
<div class="col-lg-12 order-lg-2">
C
</div>
</div>
</div>
</div>
What I wanted to achieve is something like this: https://i.stack.imgur.com/9wPO6.jpg
And when I run my code and resized in mobile it turns out like this: B A C
Any help would be greatly appreciated! Thanks!