Currently, I am designing a column layout using Bootstrap 4.
Here is the code snippet:
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet"/>
<div class="container-fluid">
<div class="row">
<div class="col-6">Section 1</div>
<div class="col-6"> Section 2 Content. Lorem ipsum dolor sit amet consectetur adipisicing elit. Ea animi, vero et ratione asperiores cumque aspernatur. Laudantium dolorum odit culpa maxime officiis aperiam necessitatibus enim eveniet, reprehenderit deserunt molestias in. </div>
<div class="col-6"> Section 3</div>
<div class="col-6"> Section 4</div>
</div>
</div>
I am looking for a way to move Section 3 below the content of Section 1 without using a masonry layout. Is there a method to achieve this?
Your assistance would be greatly appreciated, especially in making Section 2 appear below Section 1 in responsive mode while maintaining the current layout in normal mode. I hope to avoid duplicating code and manage the layout effectively.