#container2 {
height: 80vh;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
#one {
height: 50%;
width: 25%;
background-color: coral;
}
#two {
height: 50%;
width: 25%;
background-color: crimson;
}
#three {
height: 50%;
width: 25%;
background-color: rgb(80, 30, 12);
align-self: flex-end;
}
<main>
<div id="container2">
<div id="one"></div>
<div id="two"></div>
<div id="three"></div>
</div>
</main>
in the above code i have used flex properties in the third div tag i wanted to shift it to right bottom when i use align self to flex end it alligned to bottom