How can I space-between two divs vertically using flexbox? Everything works when using it for the horizontal patterns, but not for the vertical ones.
#container {
height: 50vh;
width: 15vw;
background-color: lightblue;
justify-content: space-between;
}
.item {}
<div id="container">
<div class="item">
<p>Align Top</p>
</div>
<div class="item">
<p>Align Bottom</p>
</div>
</div>