Skip to content

Instantly share code, notes, and snippets.

@tushartuteja
Created July 5, 2019 15:20
Show Gist options
  • Select an option

  • Save tushartuteja/ed79b591d4ca92739ba4a3371ba1956f to your computer and use it in GitHub Desktop.

Select an option

Save tushartuteja/ed79b591d4ca92739ba4a3371ba1956f to your computer and use it in GitHub Desktop.
body {
margin: 0px;
}
.parent {
display: flex;
background-color: yellow;
width: 100px;
}
.one {
width: 50px;
background-color: red;
height: 100px;
flex-grow: 1;
flex-shrink: 1;
}
.two {
width: 50px;
background-color: blue;
height: 100px;
flex-grow: 2;
flex-shrink: 2;
}
.three {
width: 50px;
background-color: green;
height: 100px;
flex-grow: 3;
flex-shrink: 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment