Sorry for the newbie post but I am new to bootstrap (using version 4.0) and have been doing a lot of reading but have not been able to achieve the simple task of stack 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 aim is to have Flexbox 1
50% height and Flexbox 2
fill the remaining height or have Flexbox 1
at 40% height and have Flexbox 2
fill the remaining space.
I have been following bootstrap documentation to learn. What other resources could I look into?
Thank you for the help.