After spending a good amount of time reading through various questions and attempting to solve my issue, I am finally seeking help from all of you.
This is what I currently have:
I am aiming for the following outcome:
The current grid consists of 3 rows, with the second/middle row containing 3 columns. The first and third columns each have 2 rows. My objective is to ensure that the left and right columns do not adjust their height based on the middle column.
body {
padding-top: 15px;
}
[class*="col-"] {
background-color: rgb(250, 127, 127);
border: 2px solid black;
border-radius: 10px;
text-align: center;
}
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<style type="text/css">
.col-lg-8 { line-height: 200px; }
.col-lg-12 { line-height: 80px; }
</style>
<div class="container">
<header class="row">
<div class="col-lg-12">
Header
</div>
</header>
<div class="row">
<div class="col-lg-2">
<div class="row">
<aside class="col-lg-12">
Side Panel
</aside>
<aside class="col-lg-12">
Side Panel
</aside>
</div>
</div>
<section class="col-lg-8">
Main Content
</section>
<div class="col-lg-2">
<div class="row">
<aside class="col-lg-12">
Side Panel
</aside>
<aside class="col-lg-12">
Side Panel
</aside>
</div>
</div>
</div>
<footer class="row">
<div class="col-lg-12">
Footer
</div>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>