x
<html>
<head>
<style>
.flex-container {
display: flex;
flex-direction: column;
justify-content: flex-end;
background-color: dodgerblue;
height: 300px;
}
.flex-container > div {
background-color: #f1f1f1;
width: 50px;
line-height: 50px;
margin: 10px;
font-size: 24px;
text-align: center;
}
</style>
</head>
<body>
<h1>CSS justify-content: flex-end</h1>
<p>When flex-direction is set to column and justify-content
is set to flex-end, elements will appears at the bottom.</p>
<div class="flex-container">
<div>1</div>
<div>2</div>
<div>3</div>
</div>
</body>
</html>