<!DOCTYPE html><html><head><style>
html {
background: white;
font: 16px 'MinervaSans';
}
.outer {
width: 400px;
height: 100px;
display: flex;
flex-direction: column;
background: pink;
}
.inner {
display: flex;
flex-wrap: wrap;
background: orange;
}
</style></head><body class="outer"><div class="inner">The orange box should have a snug height</div></div></div>