Last active
August 29, 2015 14:26
-
-
Save jaseflow/7750722ad5accf9711fc to your computer and use it in GitHub Desktop.
Grow example
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
| <style> | |
| .flex {display: flex;} | |
| .grow {flex-grow: 1;} | |
| /* Assume there are more styles here to make the boxes blue */ | |
| </style> | |
| <div class="flex"> | |
| <div></div> | |
| <div class="grow"></div> | |
| <div></div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment