I want to make an "rtl" responsive layout in twitter bootstrap, such that the right panel will go up on a small viewport.
By default the right col will go downwards on a small viewport.
Can it be achieved and how?
code sample: (jsfiddle)
<div class="container">
<div class="row">
<div class="col-md-6">
<div style="background-color: yellowgreen;width: 100%;height:400px;">
<h1>right-top</h1>
</div>
</div>
<div class="col-md-6">
<div style="background-color: pink;width: 100%;height:400px;">
<h1>left-bottom</h1>
</div>
</div>
</div>
</div>