Can someone help me with this code snippet?
<div class="row">
<div class="col-xs-12">
<div class="col-md-6">
<div class="col-sm-7">
Content B
</div>
<div class="col-sm-5">
<img src="https://www.ipbrick.com/wp-content/uploads/2013/12/cloud.png" />
</div>
</div>
<div class="col-md-6">
<div class="col-sm-5">
Content A
</div>
<div class="col-sm-7">
Content C
</div>
</div>
</div>
</div>
This code snippet is currently displayed as follows:
desktop
----b----|--d--|--a--|----c----
mobile
b
d
a
c
However, I would like it to appear in mobile mode like this:
d
b
a
c
I have tried reading this article for help, but I am still struggling to understand. Can anyone provide some clarification?