My webpage is built using Bootstrap 4 and the layout looks like this:
<div class="row">
<div class="col-md-8">
Content A
</div>
<div class="col-md-4">
Content B
</div>
</div>
It displays as follows:
-----
|A|B|
-----
However, on mobile devices, Column A appears on top by default. I want to switch it so that Column B appears on top. Is this achievable with Bootstrap 4? I attempted using push and pull classes but had no luck.