Firstly, I saw many threads about this question like Here and Here. But the problem is not solved!
I need to reorder two rows. I have this :
HTML :
<div class="row first-row">
<div class="col-xs-6">Col-1</div>
<div class="col-xs-6">Col-2</div>
</div>
<div class="row second-row">
<div class="col-xs-6">Col-3</div>
<div class="col-xs-6">Col-4</div>
</div>
I need to reorder first-row
with second-row
.
Any help would be appreciated.