<div class="parent">
  <div class="child child-one">child</div>
  <div class="child child-two">child</div>
  <div class="child child-three">child</div>
</div>
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.parent {
  background-color: #001f3f;
  display: flex;
  padding: 20px;
  flex-wrap: wrap;
}

.child {
  background-color: #0074d9;
  padding: 20px;
  color: white;
  flex: 0 1 auto;
}

.child-three {
  flex: 1 0 1000px;
  background: #ff851b;
}
View Compiled

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.