I want to order the left side item to the bottom in mobile view only. As you can see, in mobile view it goes to the top, while I want to show content at beginning in mobile view.
Anyone can help me get them organized?
Here is the code:
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-md-3">
<button class="btn btn-lg btn-primary btn-block"> Left Sidebar</button>
<button class="btn btn-lg btn-primary btn-block"> Left Sidebar</button>
</div>
<div class="content-area col-xs-12 col-md-6">
<button class="btn btn-lg btn-info btn-block"> Content</button>
<button class="btn btn-lg btn-info btn-block"> Content</button>
</div>
<div class="col-xs-12 col-md-3">
<button class="btn btn-lg btn-primary btn-block"> Right Sidebar</button>
<button class="btn btn-lg btn-primary btn-block"> Right Sidebar</button>
</div>
</div>
</div>