Last active
November 18, 2017 03:25
-
-
Save erickluan/cef507223fd915cc97d1fc30754382ad to your computer and use it in GitHub Desktop.
Values of flex-direction
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
.container{ | |
display: flex; | |
} | |
.container .row{ | |
flex-direction: row; | |
} | |
.container .row-reverse{ | |
flex-direction: row-reverse; | |
} | |
.container .column{ | |
flex-direction: column; | |
} | |
.container .column-reverse{ | |
flex-direction: column-reverse; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment