Skip to content

Instantly share code, notes, and snippets.

@Ifmr24
Created May 25, 2019 05:09
Show Gist options
  • Save Ifmr24/a4ff770f26c68006afa2340944a11bfb to your computer and use it in GitHub Desktop.
Save Ifmr24/a4ff770f26c68006afa2340944a11bfb to your computer and use it in GitHub Desktop.
CSS - Flex
.containerFlexVertical{
display: flex;
flex-direction: column;
flex-wrap: wrap;
}
.containerFlexHorizontal{
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.spaceBetweenVertical{
display:flex;
flex-direction: column;
justify-content: space-between;
}
.spaceBetweenHorizontal{
display:flex;
flex-direction: row;
justify-content: space-between;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment