The code snippet below displays "1 2 3":
<div class="row">
<div class="col-md-3">
1
</div>
<div class="col-md-6">
2
</div>
<div class="col-md-3">
3
</div>
</div>
In order to prioritize the main contents on smaller screens, particularly phones, is there a way we can have it displayed as "2 1 3"?