Created
July 5, 2019 15:06
-
-
Save tushartuteja/e01f8ffc567c1cc918da44ee14519149 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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