<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Align Text to Bottom</title>
<style>
.container {
height: 200px; /* Set the height of the container */
display: flex;
flex-direction: column;
justify-content: flex-end; /* Align items to the end (bottom) of the container */
}
.text {
background-color: lightblue;
padding: 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="text">This text is aligned to the bottom of the container.</div>
</div>
</body>
</html>