I am looking to design a unique grid system that divides the page into either 2 columns or 2 rows that are completely separate from each other. This means that the content on one side of the page does not expand to match the height of the content on the other side.
Although I can achieve this using the following code snippet...
However, currently, the columns automatically adjust their height to be equal to the tallest column in their row.
<div class="container">
<div class="row">
<div class="col-lg-6">
Row 1 Col 1
</div>
<div class="col-lg-6">
Row 1 Col 2
</div>
</div>
<div class="row">
<div class="col-lg-6">
Row 2 Col 1
</div>
<div class="col-lg-6">
Row 2 Col 2
</div>
</div>
</div>
I am seeking a layout similar to this...
I have attempted to use two "col-6" columns, but all my attempts have resulted in either stacked columns or columns adjusting their heights to align with neighboring columns.
I also experimented with restricting the width of two columns and two rows to 50%, however, this caused the rows to stack or the columns to adjust their height accordingly.
My goal is to create a webpage where I can display different statistical tables on both sides – without them having equal heights or affecting the opposite side's height.