Skip to content

Instantly share code, notes, and snippets.

@flowforfrank
Created September 24, 2020 14:26
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/7863c094e37340013170f0afeba97dad to your computer and use it in GitHub Desktop.
Save flowforfrank/7863c094e37340013170f0afeba97dad to your computer and use it in GitHub Desktop.
Setting the align-self property in css
.flex-items {
align-self: start;
align-self: self-start;
align-self: flex-start;
align-self: center;
align-self: end;
align-self: self-end;
align-self: flex-end;
align-self: baseline;
align-self: first baseline;
align-self: last baseline;
align-self: stretch;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment