<!DOCTYPE html>
<html>
<head>
<style>
#container {
width: 220px;
height: 300px;
border: 1px solid #c3c3c3;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
align-content: end;
}
#container > div {
width: 70px;
height: 70px;
}
</style>
</head>
<body>
<h1>The align-content Property</h1>
<p>Items are aligned inside the grid container, at the end in the block direction.</p>
<div id="container">
<div style="background-color:coral;"></div>
<div style="background-color:lightblue;"></div>
<div style="background-color:pink;"></div>
<div style="background-color:lightblue;"></div>
<div style="background-color:coral;"></div>
</div>
</body>
</html>