.parent {
display: flex; /* Enables Flexbox */
height: 300px; /* Set a specific height for the parent div */
border: 1px solid #000;
}
.child {
background-color: lightblue;
flex: 1; /* Optional: Makes the child take up remaining space */
}