Apologies for my lack of experience with Bootstrap, specifically version 4.0. I have been researching extensively but am struggling to accomplish the simple task of stacking two divs on top of each other.
<div class="d-flex flex-column">
<div style="background: blueviolet">
Flex item 1
</div>
<div style="background: burlywood">
Flex item 2
</div>
</div>
My goal is to make Flexbox 1
50% height and have Flexbox 2
fill the remaining height, or to set Flexbox 1
at 40% height and let Flexbox 2
occupy the rest of the space.
I have been referring to the Bootstrap documentation for guidance. Are there any other resources you would recommend for me to explore?
Thank you in advance for your assistance.