https://codesandbox.io/s/romantic-proskuriakova-q5w4ik?file=/src/styles.css
I have the following html
<div id="container">
<div>A</div>
<div>B</div>
<div>C</div>
<div>D</div>
<div id="end">E</div>
</div>
with the following css
#container {
height: 500px;
border: 1px solid red;
display: flex;
flex-direction: column;
justify-content: center;
}
#end {
justify-self: end;
color: red;
}
how can I put "E" at the bottom of the container??
I don't want to use position relative and absolute because I need this to be responsive.
I want to have everything centered expect the div containing the letter E