stretch child

PHOTO EMBED

Wed Jan 08 2025 22:43:26 GMT+0000 (Coordinated Universal Time)

Saved by @davidmchale #flexbox #stretch #child

.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 */
}
content_copyCOPY