Skip to content

Instantly share code, notes, and snippets.

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