Utilizing Bootstrap 3, I'm faced with a challenge to achieve the layout depicted in the image. I have set up one row with two columns, positioned next to each other as shown; however, upon resizing to mobile view, I want the right column to drop below the left. Any assistance on this matter would be greatly appreciated. Thank you. https://i.sstatic.net/QqNXd.png
Here is my code snippet for reference:
<div className="container">
<div className="row">
<div className="col-xs-4 col-offset-xs-1">
<h1>1</h1>
</div>
<div className="col-xs-4">
<div className="row">
<h1>2</h1>
</div>
</div>