please kindly fix this.
.wrap {
display: flex;
flex-flow: column;
}
.one {
background: yellow;
flex: 1 0 0;
}
.four {
background: red;
flex: 4 0 0;
}
<div class="wrap">
<div class="one">One</div>
<div class="four">Four</div>
</div>