Skip to content

Instantly share code, notes, and snippets.

@erickluan
Last active November 18, 2017 03:25
Show Gist options
  • Save erickluan/cef507223fd915cc97d1fc30754382ad to your computer and use it in GitHub Desktop.
Save erickluan/cef507223fd915cc97d1fc30754382ad to your computer and use it in GitHub Desktop.
Values of flex-direction
.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