I have 2 items with the following structure:
<div class="d-flex align-items-center">
<div class="container">
<div class="d-flex flex-column align-items-center">
<div class="logo">
Center
</div>
<div class="scroll">
<a href="#about-us">
End
</a>
</div>
</div>
</div>
</div>
Now I need Center
to be centered horizontally & vertically BUT End
should be on bottom of page.
Is it possible to do this with Flex? I'm using Bootstrap 4.