I have a unique design using Bootstrap as shown below:
<div class="row">
<div class="col-md-2">
1
</div>
<div class="col-md-8">
2
</div>
<div class="col-md-2">
3
</div>
</div>
This layout displays content in this order: 1 2 3.
However, on mobile devices, the first column appears at the top by default. I want to display the third column second and then the second column last. Is it possible to achieve this with Bootstrap?