One
Two
Three has more content
.box { display: flex; } .box > * { flex: 0 0 auto; width: 200px; }
<div class="box"> <div>One</div> <div>Two</div> <div>Three has more content</div> </div>