JSFiddle - React, Tailwind, and code Playground
by Rich Costello
HTML
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<div class="container">
<div class="row">
<div class="col-sm-6 text-center col-sm-push-6 reverse">
image
</div>
<div class="col-sm-6 text-center col-sm-pull-6 reverse">
desctiption
</div>
</div>
<div class="row">
<div class="col-sm-6 text-center">
image
</div>
<div class="col-sm-6 text-center">
desctiption
</div>
</div>
<div class="row">
<div class="col-sm-6 text-center col-sm-push-6 reverse">
image
</div>
<div class="col-sm-6 text-center col-sm-pull-6 reverse">
desctiption
</div>
</div>
</div>
CSS
.container {
background: beige;
}
.reverse {
background: salmon;
}