Currently in the process of working on my final project as a student.
Utilizing Bootstrap 3, I am striving to construct a grid that mirrors the structure depicted in the image below:
Thus far, I have only achieved success in creating grids that span horizontally by %100.
You are welcome to take a look at my project and see what I have accomplished here.
Initially, I tried developing the following class, but ultimately had to comment it out in my CSS due to some unexpected issues arising from it and the removal of body positioning.
body {
position: relative;
}
.fluid-height {
height: 100%;
min-height: 100%;
position: absolute;
top: 0;
bottom: 0;
}