Skip to content

Instantly share code, notes, and snippets.

@flowforfrank
Created September 24, 2020 13:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flowforfrank/2ee3ca974d14fd0ba7209af716a9ed68 to your computer and use it in GitHub Desktop.
Save flowforfrank/2ee3ca974d14fd0ba7209af716a9ed68 to your computer and use it in GitHub Desktop.
Setting the justify-content property
.flex-container {
justify-content: normal; /* Initial value */
justify-content: start;
justify-content: flex-start;
justify-content: center;
justify-content: end;
justify-content: flex-end;
justify-content: left;
justify-content: right;
justify-content: space-between;
justify-content: space-around;
justify-content: space-evenly;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment