Skip to content

Instantly share code, notes, and snippets.

@tushartuteja
Last active July 6, 2019 04:23
Show Gist options
  • Save tushartuteja/74b30189faac18493878111b496ca26d to your computer and use it in GitHub Desktop.
Save tushartuteja/74b30189faac18493878111b496ca26d to your computer and use it in GitHub Desktop.
body {
margin: 0px;
}
.parent {
display: flex;
background-color: yellow;
width: 100px;
}
.one {
width: 40px;
background-color: red;
height: 100px;
flex-grow: 1;
flex-shrink: 1;
}
.two {
width: 50px;
background-color: blue;
height: 100px;
flex-grow: 2;
flex-shrink: 1;
}
.three {
width: 60px;
background-color: green;
height: 100px;
flex-grow: 3;
flex-shrink: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment