JSFiddle - React, Tailwind, and code Playground
by Igor_Ivancha
HTML
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<div class="row">
<div class="col col-md-push-3 col-md-6 col-xs-12">
//column Center here
</div>
<div class="col col-md-pull-6 col-md-3 col-xs-6">
//column left here
</div>
<div class="col col-md-3 col-xs-6">
//column right here
</div>
</div>
CSS
.col{
border: 1px solid #000;
}