Created
August 31, 2014 11:59
-
-
Save nicksheffield/982223c0d70bb6a596d1 to your computer and use it in GitHub Desktop.
Extremely simple flexbox system
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
| .flex{ | |
| display: flex; | |
| flex: 1; | |
| justify-content: space-between; | |
| } | |
| .flex-row { flex-flow: row nowrap; } | |
| .flex-column { flex-flow: column nowrap; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment