I need to change the display order of columns in bootstrap
Currently I have two columns side by side in one row like this:
Col A - Col B (on all screens except mobile devices)
However, when the screen size is reduced or viewed on a mobile device, I want the columns to stack in reverse order like this:
Col B
Col A (on mobile and resized screens)
This is my HTML code:
<div class="container-fluid">
<div class="row">
<div class="col-md-8 col-lg-8 col-sm-12">
<p>A</p>
</div>
<div class="col-md-4 col-lg-4 col-sm-12">
<p>B</p>
</div>
</div>