I am using Bootstrap 4, but if it works on version 3, it should work on v4.
I have 2 divs within a column like so:
<div class="row">
<div class="col-xs-12">
<div>TOP ON DESKTOP, BOTTOM ON MOBILE</div>
<div>BOTTOM ON DESKTOP, TOP ON MOBILE</div>
</div>
</div>
Is there a way I can get the divs to swap around on a mobile device? I do not want to use any JavaScript here; I would like to use Bootstrap classes only, if possible.
If it is not possible with Bootstrap, then CSS-only please.