I currently have a row in Bootstrap with two columns that stack on top of each other for larger screens. However, the order of the columns is reversed on desktop, with 'one' appearing before 'two'. Is there a simple way to rearrange the sequence so that on mobile, 'two' appears before 'one'?
Can this be achieved without the need for JavaScript?
<div className="row mx-0">
<div className="col-lg-6 one">
//
</div>
<div className="col-lg-6 two">
//
</div>
</div>